##// END OF EJS Templates
Do not install rmagick gem with jruby....
Jean-Philippe Lang -
r9207:7d458e0b2739
parent child
Show More
@@ -16,12 +16,14 group :openid do
16 16 gem "ruby-openid", "~> 2.1.4", :require => "openid"
17 17 end
18 18
19 # Optional gem for exporting the gantt to a PNG file
20 group :rmagick do
21 # RMagick 2 supports ruby 1.9
22 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
23 # different requirements for the same gem on different platforms
24 gem "rmagick", ">= 2.0.0"
19 # Optional gem for exporting the gantt to a PNG file, not supported with jruby
20 platforms :mri, :mingw do
21 group :rmagick do
22 # RMagick 2 supports ruby 1.9
23 # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
24 # different requirements for the same gem on different platforms
25 gem "rmagick", ">= 2.0.0"
26 end
25 27 end
26 28
27 29 # Database gems
General Comments 0
You need to be logged in to leave comments. Login now