Skip to content

Commit

Permalink
Lock Sidekiq for < 5 for Ruby 2.2
Browse files Browse the repository at this point in the history
Sidekiq has a version check error for Ruby 2.2.10.
  • Loading branch information
pixeltrix committed Apr 1, 2018
1 parent 54a5e72 commit 51b3394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ gem 'dalli', '< 2.7.7'
group :job do
gem 'resque', require: false
gem 'resque-scheduler', RUBY_VERSION < '2.0' ? '<= 4.3.0' : nil
gem 'sidekiq', RUBY_VERSION < '2.2' ? '< 5' : nil, require: false
gem 'sidekiq', RUBY_VERSION < '2.3' ? '< 5' : nil, require: false
gem 'sucker_punch', '< 2.0', require: false
gem 'delayed_job', require: false
gem 'queue_classic', '> 0.3.2', require: false, platforms: :ruby
Expand Down

0 comments on commit 51b3394

Please sign in to comment.