forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (50 loc) · 1.21 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'http://rubygems.org'
gem 'rails', '3.0.10'
gem "jquery-rails"
gem 'json'
gem 'rest-client', :require => 'rest_client'
gem "acts_as_audited", "2.0.0"
gem "has_many_polymorphs", :git => "https://github.com/jystewart/has_many_polymorphs.git", :ref => '03429a61e511f394e9f96af0c8998268ca99d42b'
gem "will_paginate", "~> 3.0.2"
gem "ancestry", "~> 1.2.4"
gem 'scoped_search', '>= 2.3.6'
gem "puppet"
gem 'net-ldap'
gem "safemode", "~> 1.0.1"
group :virt do
gem "virt", ">= 0.2.1"
gem "rbovirt", ">= 0.0.9"
gem "rbvmomi"
gem "fog", :git => "git://github.com/fog/fog.git"
#gem "fog", ">= 1.3.2"
end
# database groups, you would most likely need to use only one of these
# to disable the ones you don't want, simple run bundle install --without sqlite mysql mysql2 ...
group :sqlite do
gem 'sqlite3'
end
group :mysql do
gem 'mysql'
end
group :mysql2 do
gem 'mysql2'
end
group :postgresql do
gem 'pg'
end
group :test do
gem 'mocha'
gem 'shoulda'
gem 'rr'
gem 'rake'
end
group :development do
# To use debugger
gem "ruby-debug", :platforms => :ruby_18
gem "ruby-debug19", :platforms => :ruby_19
end
group :console do
gem 'wirb'
gem 'hirb-unicode'
gem 'awesome_print', :require => 'ap'
end