1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

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
This commit is contained in:
Marius Balteanu 2021-10-02 15:43:22 +00:00
parent 975e485afd
commit 01a8167a13

View File

@ -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