##// END OF EJS Templates
2.6-stable: Gemfile: pin i18n and rmagick versions due to bundler error on Ruby 1.8.7...
Toshi MARUYAMA -
r13433:ede61fa9c7ff
parent child
Show More
@@ -9,6 +9,8 gem "request_store", "1.0.5"
9 gem "mime-types"
9 gem "mime-types"
10 gem "rbpdf", "~> 1.18.2"
10 gem "rbpdf", "~> 1.18.2"
11
11
12 gem "i18n", "~> 0.6.11", :platforms => [:mri_18, :mingw_18]
13
12 # Optional gem for LDAP authentication
14 # Optional gem for LDAP authentication
13 group :ldap do
15 group :ldap do
14 gem "net-ldap", "~> 0.3.1"
16 gem "net-ldap", "~> 0.3.1"
@@ -26,7 +28,11 platforms :mri, :mingw do
26 # RMagick 2 supports ruby 1.9
28 # RMagick 2 supports ruby 1.9
27 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
29 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
28 # different requirements for the same gem on different platforms
30 # different requirements for the same gem on different platforms
29 gem "rmagick", ">= 2.0.0"
31 if RUBY_VERSION < "1.9"
32 gem "rmagick", "2.13.3"
33 else
34 gem "rmagick", ">= 2.0.0"
35 end
30 end
36 end
31
37
32 # Optional Markdown support, not for JRuby
38 # Optional Markdown support, not for JRuby
General Comments 0
You need to be logged in to leave comments. Login now