comparison Gemfile @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents b450a9d58aed
children a1bdbf8a87d5
comparison
equal deleted inserted replaced
1516:b450a9d58aed 1517:dffacf8a6908
4 gem "rake", "~> 10.1.1" 4 gem "rake", "~> 10.1.1"
5 gem "jquery-rails", "~> 2.0.2" 5 gem "jquery-rails", "~> 2.0.2"
6 gem "coderay", "~> 1.1.0" 6 gem "coderay", "~> 1.1.0"
7 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby] 7 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
8 gem "builder", "3.0.0" 8 gem "builder", "3.0.0"
9 gem "mime-types"
10 gem "awesome_nested_set", "2.1.6"
9 11
10 # Optional gem for LDAP authentication 12 # Optional gem for LDAP authentication
11 group :ldap do 13 group :ldap do
12 gem "net-ldap", "~> 0.3.1" 14 gem "net-ldap", "~> 0.3.1"
13 end 15 end
16 group :openid do 18 group :openid do
17 gem "ruby-openid", "~> 2.3.0", :require => "openid" 19 gem "ruby-openid", "~> 2.3.0", :require => "openid"
18 gem "rack-openid" 20 gem "rack-openid"
19 end 21 end
20 22
21 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
22 platforms :mri, :mingw do 23 platforms :mri, :mingw do
24 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
23 group :rmagick do 25 group :rmagick do
24 # RMagick 2 supports ruby 1.9 26 # RMagick 2 supports ruby 1.9
25 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support 27 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
26 # different requirements for the same gem on different platforms 28 # different requirements for the same gem on different platforms
27 gem "rmagick", ">= 2.0.0" 29 gem "rmagick", ">= 2.0.0"
30 end
31
32 # Optional Markdown support, not for JRuby
33 group :markdown do
34 # TODO: upgrade to redcarpet 3.x when ruby1.8 support is dropped
35 gem "redcarpet", "~> 2.3.0"
28 end 36 end
29 end 37 end
30 38
31 platforms :jruby do 39 platforms :jruby do
32 # jruby-openssl is bundled with JRuby 1.7.0 40 # jruby-openssl is bundled with JRuby 1.7.0
80 gem "shoulda", "~> 3.3.2" 88 gem "shoulda", "~> 3.3.2"
81 gem "mocha", "~> 1.0.0", :require => 'mocha/api' 89 gem "mocha", "~> 1.0.0", :require => 'mocha/api'
82 if RUBY_VERSION >= '1.9.3' 90 if RUBY_VERSION >= '1.9.3'
83 gem "capybara", "~> 2.1.0" 91 gem "capybara", "~> 2.1.0"
84 gem "selenium-webdriver" 92 gem "selenium-webdriver"
85 gem "database_cleaner"
86 end 93 end
87 end 94 end
88 95
89 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") 96 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
90 if File.exists?(local_gemfile) 97 if File.exists?(local_gemfile)