diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-13 14:52:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-13 14:52:58 +0000 |
commit | 52f9ab110558fb8c689845a3b370ea01bd644dec (patch) | |
tree | deb36b0549462422cd0633146f964cdc2050b91b | |
parent | 5fde4e22464ff5a133c9808cb7b7b6a759393543 (diff) | |
download | redmine-52f9ab110558fb8c689845a3b370ea01bd644dec.tar.gz redmine-52f9ab110558fb8c689845a3b370ea01bd644dec.zip |
Use redcarpet 3.3 if using ruby 1.9 and higher (#20735).
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14567 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | Gemfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -33,8 +33,7 @@ platforms :mri, :mingw do # Optional Markdown support, not for JRuby group :markdown do - # TODO: upgrade to redcarpet 3.x when ruby1.8 support is dropped - gem "redcarpet", "~> 2.3.0" + gem "redcarpet", (RUBY_VERSION < "1.9" ? "~> 2.3.0" : "~> 3.3.2") end end |