1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Pin commonmarker to 0.22 if Ruby version is greater than 2.5 (#32424).

git-svn-id: http://svn.redmine.org/redmine/trunk@21157 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2021-08-11 21:45:07 +00:00
parent 9af2ba2c13
commit 3417191bc7

View File

@ -50,7 +50,7 @@ end
# Optional CommonMark support, not for JRuby
group :common_mark do
gem "html-pipeline", "~> 2.12"
gem "commonmarker", "~> 0.20"
gem "commonmarker", (RUBY_VERSION < '2.6' ? '0.21.0' : '~> 0.22')
gem "sanitize", "~> 5.1"
end