mirror of
https://github.com/deanpcmad/sidekiq-limit_fetch.git
synced 2022-11-09 13:54:36 -05:00
sidekiq 7 appraisal
This commit is contained in:
parent
9bf29b2484
commit
d83c5b747a
4 changed files with 70 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
ruby: ["2.7", "3.0", "3.1"]
|
ruby: ["2.7", "3.0", "3.1"]
|
||||||
appraisal: ['6.0', '6.1', '6.2', '6.3', '6.4', '6.5', 'master']
|
appraisal: ['6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '7.0', 'master']
|
||||||
services:
|
services:
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
|
|
@ -22,6 +22,10 @@ appraise 'sidekiq-6.5' do
|
||||||
gem 'sidekiq', '~> 6.5.0'
|
gem 'sidekiq', '~> 6.5.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
appraise 'sidekiq-7.0' do
|
||||||
|
gem 'sidekiq', '~> 7.0.0'
|
||||||
|
end
|
||||||
|
|
||||||
appraise 'sidekiq-master' do
|
appraise 'sidekiq-master' do
|
||||||
gem 'sidekiq', github: 'mperham/sidekiq'
|
gem 'sidekiq', github: 'mperham/sidekiq'
|
||||||
end
|
end
|
||||||
|
|
7
gemfiles/sidekiq_7.0.gemfile
Normal file
7
gemfiles/sidekiq_7.0.gemfile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "sidekiq", "~> 7.0.0"
|
||||||
|
|
||||||
|
gemspec path: "../"
|
58
gemfiles/sidekiq_7.0.gemfile.lock
Normal file
58
gemfiles/sidekiq_7.0.gemfile.lock
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
sidekiq-limit_fetch (4.3.2)
|
||||||
|
redis (>= 4.6.0)
|
||||||
|
sidekiq (>= 4)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
connection_pool (2.3.0)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
rack (3.0.0)
|
||||||
|
rake (13.0.6)
|
||||||
|
redis (5.0.5)
|
||||||
|
redis-client (>= 0.9.0)
|
||||||
|
redis-client (0.11.0)
|
||||||
|
connection_pool
|
||||||
|
redis-namespace (1.9.0)
|
||||||
|
redis (>= 4)
|
||||||
|
rspec (3.12.0)
|
||||||
|
rspec-core (~> 3.12.0)
|
||||||
|
rspec-expectations (~> 3.12.0)
|
||||||
|
rspec-mocks (~> 3.12.0)
|
||||||
|
rspec-core (3.12.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-expectations (3.12.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-mocks (3.12.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-support (3.12.0)
|
||||||
|
sidekiq (7.0.0)
|
||||||
|
concurrent-ruby (< 2)
|
||||||
|
connection_pool (>= 2.3.0)
|
||||||
|
rack (>= 2.2.4)
|
||||||
|
redis-client (>= 0.9.0)
|
||||||
|
thor (1.2.1)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
appraisal
|
||||||
|
rake
|
||||||
|
redis-namespace (~> 1.5, >= 1.5.2)
|
||||||
|
rspec
|
||||||
|
sidekiq (~> 7.0.0)
|
||||||
|
sidekiq-limit_fetch!
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.6
|
Loading…
Reference in a new issue