From 57bdf43df5377511554d07370496357b198785bf Mon Sep 17 00:00:00 2001 From: "Michael J. Giarlo" Date: Mon, 15 May 2023 12:30:13 -0700 Subject: [PATCH] Stop auto-requiring whenever gem This commits works around a bug in the whenever gem that has begun crashing the Rails console when doing auto-complete under Ruby 3.2: https://github.com/javan/whenever/issues/831 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index d2d2ed1da..b6f02950c 100644 --- a/Gemfile +++ b/Gemfile @@ -81,5 +81,5 @@ gem 'sneakers', '~> 2.11' # rabbitMQ background processing gem 'state_machines-activerecord' gem 'turbo-rails', '~> 1.0' gem 'view_component', '~> 2.56.2' # https://github.com/github/view_component/issues/1390 -gem 'whenever' +gem 'whenever', require: false # Work around https://github.com/javan/whenever/issues/831 gem 'zipline', '~> 1.4'