redmine: Move optional gems to Gemfile.local

In order to make the diff of the original Gemfile and this one a bit
smaller, use Gemfile.local for optional gems like webrick.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer
2025-06-05 19:47:42 +02:00
committed by Bjørn Forsman
parent e02f6039d5
commit 8e690ed6fc
2 changed files with 1 additions and 2 deletions
-2
View File
@@ -82,8 +82,6 @@ group :test do
gem 'bundle-audit', require: false
end
gem "webrick"
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.exist?(local_gemfile)
eval_gemfile local_gemfile
+1
View File
@@ -0,0 +1 @@
gem 'webrick'