From 01a8167a138a7598a4716e9c04b9d77a50de7491 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sat, 2 Oct 2021 15:43:22 +0000 Subject: [PATCH] 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 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 6925f5783..39338f4b6 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", (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