From a561d23bd4d5730274b40ab93473b22b980a84f6 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Tue, 4 Oct 2022 19:46:11 +0000 Subject: [PATCH] Always bundle html-pipeline and sanitizer gems (#37750). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Jens Krämer. git-svn-id: https://svn.redmine.org/redmine/trunk@21899 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- Gemfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 6d8dcb316..bccf76491 100644 --- a/Gemfile +++ b/Gemfile @@ -29,6 +29,10 @@ gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] gem 'rotp', '>= 5.0.0' gem 'rqrcode' +# HTML pipeline and sanitization +gem "html-pipeline", "~> 2.13.2" +gem "sanitize", "~> 6.0" + # Optional gem for LDAP authentication group :ldap do gem 'net-ldap', '~> 0.17.0' @@ -46,9 +50,7 @@ end # Optional CommonMark support, not for JRuby group :common_mark do - gem "html-pipeline", "~> 2.13.2" gem "commonmarker", '0.23.4' - gem "sanitize", "~> 6.0" gem 'deckar01-task_list', '2.3.2' end