forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
70 lines (58 loc) · 1.4 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
60
61
62
63
64
65
66
67
68
69
70
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.7'
gem 'net-ldap'
gem "safemode", "~> 1.0.1"
gem 'uuidtools'
local_gemfile = File.dirname(__FILE__) + "/Gemfile.local.rb"
if File.file?(local_gemfile)
self.instance_eval(Bundler.read_file(local_gemfile))
end
group :fog do
gem "fog", :git => "git://github.com/fog/fog.git"
#gem "fog", ">= 1.3.2"
end
group :vmware do
gem "rbvmomi"
end
group :virt do
gem "virt", ">= 0.2.1"
gem "rbovirt", ">= 0.0.12"
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', '< 0.3'
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