From aa1e8790e5a2b6bd096957899c4157e284f4b9e8 Mon Sep 17 00:00:00 2001 From: Rafael dos Santos Silva Date: Wed, 21 Dec 2022 18:20:07 -0300 Subject: [PATCH] FIX: Prometheus plugin expects webrick in production (#19562) * FIX: Prometheus plugin expects webrick in production * newline --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 5748f027299..537f6fcad6a 100644 --- a/Gemfile +++ b/Gemfile @@ -169,7 +169,6 @@ group :test, :development do gem 'rswag-specs' gem 'annotate' - gem 'webrick', require: false end group :development do @@ -271,3 +270,5 @@ gem 'faraday-retry' # workaround for faraday-net_http, see # https://github.com/ruby/net-imap/issues/16#issuecomment-803086765 gem 'net-http' + +gem 'webrick', require: false