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

Don't try to install CommonMarker 0.22 on Ruby 2.6.0-rc (#32424).

git-svn-id: http://svn.redmine.org/redmine/trunk@21178 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2021-08-15 06:51:31 +00:00
parent 9651398469
commit a701bf1bb9

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", (RUBY_VERSION < '2.6' ? '0.21.0' : '~> 0.22')
gem "commonmarker", (Gem.ruby_version < Gem::Version.new('2.6.0') ? '0.21.0' : '~> 0.22')
gem "sanitize", "~> 6.0"
end