-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop sidekiq 5 support, sort-out load paths, fixup 7.2 redis call
- Loading branch information
Showing
11 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
appraise 'sidekiq-5' do | ||
gem 'sidekiq', '~> 5.1', '>= 5.1' | ||
end | ||
|
||
appraise 'sidekiq-6_1' do | ||
gem 'sidekiq', '~> 6.1', '>= 6.1.1', '< 6.2' | ||
end | ||
|
||
appraise 'sidekiq-7-1' do | ||
appraise 'sidekiq-6_2' do | ||
gem 'sidekiq', '~> 6.2', '>= 6.2' | ||
end | ||
|
||
appraise 'sidekiq-7_1' do | ||
gem 'sidekiq', '~> 7.1', '>= 7.1.0', '< 7.2' | ||
end | ||
|
||
appraise 'sidekiq-7-2' do | ||
appraise 'sidekiq-7_2' do | ||
gem 'sidekiq', '~> 7.2', '>= 7.2.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "minitest" | ||
group :test do | ||
gem "minitest" | ||
gem "mocha", require: false | ||
end | ||
|
||
gem "appraisal" | ||
gem "mocha", require: false | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "sidekiq", "~> 6.2", ">= 6.2" | ||
|
||
group :test do | ||
gem "minitest" | ||
gem "mocha", require: false | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
$LOAD_PATH.unshift(File.expand_path('../lib', __dir__)) | ||
require 'sidekiq-lock' | ||
|
||
class LockWorker | ||
|