forked from edavis10/redmine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
107 lines (90 loc) · 2.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
source :rubygems
gem "rails", "~> 3.2.0"
gem "rubytree"
gem "coderay", "~> 1.0.0"
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
gem "tzinfo", "~> 0.3.31"
gem "sqlite3"
gem "thin"
gem "prototype_legacy_helper",
"0.0.0",
:git => 'git://github.com/willbryant/prototype_legacy_helper.git'
# :git => 'git://github.com/rails/prototype_legacy_helper.git'
# TODO rails-3.1: review the core changes to awesome_nested_set and decide on actions
gem "awesome_nested_set"
## TODO rails-3.1: review the core changes to open_id_authentication and decide on actions
gem "open_id_authentication",
:git => 'git://github.com/ndbradley730/open_id_authentication.git',
:branch => 'controllermethods_name_error'
gem "ruby-prof"
# gem "jquery-rails"
# gem "prototype-rails", :git => "https://github.com/rails/prototype-rails.git"
gem "prototype-rails"
gem 'therubyracer', :platforms => [:mri_18, :mri_19]
gem 'rails_autolink'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
# Optional gem for LDAP authentication
group :ldap do
gem "net-ldap", "~> 0.3.1"
end
# Optional gem for OpenID authentication
group :openid do
gem "ruby-openid", "~> 2.1.4", :require => "openid"
end
# # Optional gem for exporting the gantt to a PNG file
# group :rmagick do
# # RMagick 2 supports ruby 1.9
# # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
# # different requirements for the same gem on different platforms
# gem "rmagick", ">= 2.0.0"
# end
# Database gems
platforms :mri, :mingw do
group :postgresql do
gem "pg", "~> 0.11.0"
end
group :sqlite do
gem "sqlite3"
end
end
platforms :jruby do
gem "jruby-openssl"
group :mysql do
gem "activerecord-jdbcmysql-adapter"
end
group :postgresql do
gem "activerecord-jdbcpostgresql-adapter"
end
group :sqlite do
gem "activerecord-jdbcsqlite3-adapter"
end
end
group :development do
gem "rdoc", ">= 2.4.2"
# gem 'thin'
# gem 'autotest'
# gem 'autotest-growl'
# gem 'autotest-fsevent'
# gem 'mynyml-redgreen'
# gem 'rails-dev-tweaks', '~> 0.5.1'
gem 'rails-dev-tweaks'
end
group :test do
gem "test-unit"
gem "shoulda", "~> 2.11"
gem "object_daddy",
:git => "git://github.com/awebneck/object_daddy.git",
:branch => "rails-3-2-gem"
gem "mocha"
end
# Load plugins' Gemfiles
Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file|
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
instance_eval File.read(file)
end