diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-02 15:43:22 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-02 15:43:22 +0000 |
commit | 01a8167a138a7598a4716e9c04b9d77a50de7491 (patch) | |
tree | 5358672ee7f3ab784a8aa37500d931c1715d7050 /Gemfile | |
parent | 975e485afdce02afefbdfa040a80639bf6b7f356 (diff) | |
download | redmine-01a8167a138a7598a4716e9c04b9d77a50de7491.tar.gz redmine-01a8167a138a7598a4716e9c04b9d77a50de7491.zip |
Stick commonmarker gem to 0.23.1 when Ruby version >= 2.6 (#35892, #32424).
git-svn-id: http://svn.redmine.org/redmine/trunk@21226 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ end # Optional CommonMark support, not for JRuby group :common_mark do gem "html-pipeline", "~> 2.13.2" - gem "commonmarker", (Gem.ruby_version < Gem::Version.new('2.6.0') ? '0.21.0' : '~> 0.22') + gem "commonmarker", (Gem.ruby_version < Gem::Version.new('2.6.0') ? '0.21.0' : '0.23.1') gem "sanitize", "~> 6.0" end |