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>
(cherry picked from commit 8e690ed6fc)
This commit is contained in:
Felix Singer 2025-05-24 04:33:18 +02:00 committed by github-actions[bot]
parent cc0f73b7ca
commit 1105b34ec2
2 changed files with 1 additions and 2 deletions

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

View file

@ -0,0 +1 @@
gem 'webrick'