summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-08-15 06:51:31 +0000
committerGo MAEDA <maeda@farend.jp>2021-08-15 06:51:31 +0000
commita701bf1bb99f4d79e560f2f39badd14371844d11 (patch)
tree75686fd7c87cfb9feab496c60507129e14fa361b /Gemfile
parent96513984699fb28878926d984207e66e38baf0cf (diff)
downloadredmine-a701bf1bb99f4d79e560f2f39badd14371844d11.tar.gz
redmine-a701bf1bb99f4d79e560f2f39badd14371844d11.zip
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
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 636e844e6..7f20fa1ee 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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