Skip to content

Commit

Permalink
Stop auto-requiring whenever gem
Browse files Browse the repository at this point in the history
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: javan/whenever#831
  • Loading branch information
mjgiarlo committed May 15, 2023
1 parent 411fbfc commit 3ab0d46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 2 additions & 0 deletions config/deploy.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'whenever/capistrano'

set :application, 'happy-heron'
set :repo_url, 'ssh://[email protected]/sul-dlss/happy-heron.git'

Expand Down

0 comments on commit 3ab0d46

Please sign in to comment.