Skip to content

Commit

Permalink
Update sidekiq
Browse files Browse the repository at this point in the history
Sidekiq 5.1.3 fixes the version check on Ruby 2.2.10.
  • Loading branch information
pixeltrix committed Apr 3, 2018
1 parent 06e2c91 commit 3804d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.3' ? '< 5' : nil, require: false
gem 'sidekiq', RUBY_VERSION < '2.2' ? '< 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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ GEM
sequel (5.6.0)
serverengine (1.5.11)
sigdump (~> 0.2.2)
sidekiq (5.1.2)
sidekiq (5.1.3)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
rack-protection (>= 1.5.0)
Expand Down

0 comments on commit 3804d01

Please sign in to comment.