From 9f3fae7d21be5418ccf34db5cb58ed65a9503760 Mon Sep 17 00:00:00 2001 From: Jens Kraemer Date: Tue, 4 Oct 2022 11:14:04 +0200 Subject: [PATCH 1/3] always bundle html-pipeline and sanitizer gems --- Gemfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 6d8dcb3161..bccf764917 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 -- 2.30.2