git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@13833
e93f8b46-1217-0410-a6f0-
8f06a7374b81
# 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
- if RUBY_VERSION < "1.9"
- gem "rmagick", "2.13.3"
- else
- gem "rmagick", ">= 2.0.0"
- end
+ gem "rmagick", (RUBY_VERSION < "1.9" ? "2.13.3" : ">= 2.0.0")
end
# Optional Markdown support, not for JRuby