From 1eeb7e50ac118938542330c72ca16908dc713f9b Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sun, 15 May 2022 10:54:10 +0000 Subject: [PATCH] Add redcarpet gem to common_mark group because the common_mark implementation requires it and Redmine won't start when it is installed without markdown group (#36892). git-svn-id: https://svn.redmine.org/redmine/trunk@21575 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- Gemfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 25134c106..e524131b6 100644 --- a/Gemfile +++ b/Gemfile @@ -40,9 +40,8 @@ group :minimagick do end # Optional Markdown support, not for JRuby -group :markdown do - gem 'redcarpet', '~> 3.5.1' -end +# ToDo: Remove common_mark group when common_mark is decoupled from markdown. See defect (#36892) for more details. +gem 'redcarpet', '~> 3.5.1', groups: [:markdown, :common_mark] # Optional CommonMark support, not for JRuby group :common_mark do -- 2.39.5