diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-10-04 19:46:11 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-10-04 19:46:11 +0000 |
commit | a561d23bd4d5730274b40ab93473b22b980a84f6 (patch) | |
tree | 28bbeefacce75284f971ba143a2bc3a611dcb938 /Gemfile | |
parent | 9ef056d615453cd9901cf9d0226d444745625f5f (diff) | |
download | redmine-a561d23bd4d5730274b40ab93473b22b980a84f6.tar.gz redmine-a561d23bd4d5730274b40ab93473b22b980a84f6.zip |
Always bundle html-pipeline and sanitizer gems (#37750).
Patch by Jens Krämer.
git-svn-id: https://svn.redmine.org/redmine/trunk@21899 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |