sidekiq-limit_fetch 3.4.0 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.github/workflows/ci.yml +42 -0
- data/Appraisals +27 -0
- data/CHANGELOG.md +30 -0
- data/LICENSE +22 -0
- data/README.md +52 -51
- data/demo/Gemfile +0 -2
- data/demo/Rakefile +1 -1
- data/gemfiles/sidekiq_6.0.gemfile +7 -0
- data/gemfiles/sidekiq_6.0.gemfile.lock +56 -0
- data/gemfiles/sidekiq_6.1.gemfile +7 -0
- data/gemfiles/sidekiq_6.1.gemfile.lock +53 -0
- data/gemfiles/sidekiq_6.2.gemfile +7 -0
- data/gemfiles/sidekiq_6.2.gemfile.lock +53 -0
- data/gemfiles/sidekiq_6.3.gemfile +7 -0
- data/gemfiles/sidekiq_6.3.gemfile.lock +53 -0
- data/gemfiles/sidekiq_6.4.gemfile +7 -0
- data/gemfiles/sidekiq_6.4.gemfile.lock +53 -0
- data/gemfiles/sidekiq_6.5.gemfile +7 -0
- data/gemfiles/sidekiq_6.5.gemfile.lock +53 -0
- data/gemfiles/sidekiq_master.gemfile +7 -0
- data/gemfiles/sidekiq_master.gemfile.lock +58 -0
- data/lib/sidekiq/extensions/manager.rb +2 -1
- data/lib/sidekiq/extensions/queue.rb +2 -1
- data/lib/sidekiq/limit_fetch/global/monitor.rb +8 -8
- data/lib/sidekiq/limit_fetch/global/semaphore.rb +8 -0
- data/lib/sidekiq/limit_fetch/instances.rb +4 -0
- data/lib/sidekiq/limit_fetch/queues.rb +43 -8
- data/lib/sidekiq/limit_fetch/unit_of_work.rb +9 -1
- data/lib/sidekiq/limit_fetch.rb +28 -4
- data/sidekiq-limit_fetch.gemspec +11 -8
- data/spec/sidekiq/limit_fetch/queues_spec.rb +23 -12
- data/spec/sidekiq/limit_fetch_spec.rb +1 -1
- data/spec/spec_helper.rb +7 -7
- metadata +67 -21
- data/.travis.yml +0 -10
- data/LICENSE.txt +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ca583389b5cea0b31200752d2c0dd85a03d38a7ea576c9a299a99367a1c8086d
|
4
|
+
data.tar.gz: 335f49aac1d3ee9128a3c92eb88a25010d906a8b8d8701d1a79b1e41349ca256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00daee076b583097d361fed04a7128188af6d8a287906a644d0449c01dd8748fd4b8b9d233eddfe1f1da22d0492626088f11e4eb9785dd31da75a47c57437726
|
7
|
+
data.tar.gz: 110b867205d0aea423ec63d8e010d5d1b75398b5aefce782fdb2320fd5e6114b10d041f59306fadb650d3401ea6a8c2fd962a6fd80d793162d8d14061c510e66
|
@@ -0,0 +1,42 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
test:
|
11
|
+
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
|
14
|
+
strategy:
|
15
|
+
fail-fast: false
|
16
|
+
matrix:
|
17
|
+
ruby: ["2.7", "3.0", "3.1"]
|
18
|
+
appraisal: ['6.0', '6.1', '6.2', '6.3', '6.4', '6.5', 'master']
|
19
|
+
services:
|
20
|
+
redis:
|
21
|
+
image: redis
|
22
|
+
options: >-
|
23
|
+
--health-cmd "redis-cli ping"
|
24
|
+
--health-interval 10s
|
25
|
+
--health-timeout 5s
|
26
|
+
--health-retries 5
|
27
|
+
ports:
|
28
|
+
- 6379:6379
|
29
|
+
|
30
|
+
steps:
|
31
|
+
- uses: actions/checkout@v2
|
32
|
+
- name: Set up Ruby
|
33
|
+
uses: ruby/setup-ruby@v1
|
34
|
+
with:
|
35
|
+
ruby-version: ${{ matrix.ruby }}
|
36
|
+
bundler-cache: false
|
37
|
+
- name: Bundle for Appraisal
|
38
|
+
run: bundle
|
39
|
+
- name: Install Appraisal dependencies
|
40
|
+
run: bundle exec appraisal sidekiq-${{ matrix.appraisal }} bundle
|
41
|
+
- name: Run tests
|
42
|
+
run: bundle exec appraisal sidekiq-${{ matrix.appraisal }} bundle exec rake
|
data/Appraisals
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
appraise 'sidekiq-6.0' do
|
2
|
+
gem 'sidekiq', '~> 6.0.0'
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise 'sidekiq-6.1' do
|
6
|
+
gem 'sidekiq', '~> 6.1.0'
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise 'sidekiq-6.2' do
|
10
|
+
gem 'sidekiq', '~> 6.2.0'
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise 'sidekiq-6.3' do
|
14
|
+
gem 'sidekiq', '~> 6.3.0'
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise 'sidekiq-6.4' do
|
18
|
+
gem 'sidekiq', '~> 6.4.0'
|
19
|
+
end
|
20
|
+
|
21
|
+
appraise 'sidekiq-6.5' do
|
22
|
+
gem 'sidekiq', '~> 6.5.0'
|
23
|
+
end
|
24
|
+
|
25
|
+
appraise 'sidekiq-master' do
|
26
|
+
gem 'sidekiq', github: 'mperham/sidekiq'
|
27
|
+
end
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [4.3.2] - 2022-09-01
|
4
|
+
|
5
|
+
- #139 - Fix Redis deprecation warnings from [@adamzapasnik](https://github.com/adamzapasnik)
|
6
|
+
|
7
|
+
## [4.3.1] - 2022-08-23
|
8
|
+
|
9
|
+
- #137 - Fix deprecation of passing timeout as positional argument to brpop from [@cgunther](https://github.com/cgunther)
|
10
|
+
|
11
|
+
## [4.3.0] - 2022-08-16
|
12
|
+
|
13
|
+
- #135 - Some extra fixes for Sidekiq 6.5 (fixes #128, #130, #131) from [@BobbyMcWho](https://github.com/BobbyMcWho)
|
14
|
+
|
15
|
+
## [4.2.0] - 2022-06-09
|
16
|
+
|
17
|
+
- #127 - Fix for Sidekiq 6.5 internal change vias PR #128 from [@evgeniradev][https://github.com/evgeniradev]
|
18
|
+
- testing changes: stop supporting Sidekiq < 6, add tests for Sidekiq 6.5, stop testing on ruby 2.6 EOL
|
19
|
+
|
20
|
+
## [4.1.0] - 2022-03-29
|
21
|
+
|
22
|
+
- #101 - Fix stuck queues bug on Redis restart from [@907th](https://github.com/907th).
|
23
|
+
|
24
|
+
## [4.0.0] - 2022-03-26
|
25
|
+
|
26
|
+
This project was taken over by [@deanpcmad](https://github.com/deanpcmad)
|
27
|
+
|
28
|
+
- #120 - Migrate CI to GitHub Actions from [@petergoldstein](https://github.com/petergoldstein).
|
29
|
+
- #124 - Fixed redis v4.6.0 pipelines deprecation warning from [@iurev](https://github.com/iurev).
|
30
|
+
- #83 - Processing dynamic queues from [@alexey-yanchenko](https://github.com/alexey-yanchenko).
|
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2022 Dean Perry
|
4
|
+
Copyright (c) 2013 brainopia
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
14
|
+
copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
22
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,46 +1,53 @@
|
|
1
1
|
## Description
|
2
2
|
|
3
|
-
|
4
|
-
limiting, pausing, blocking, querying.
|
3
|
+
*This project has been taken over by [@deanpcmad](https://github.com/deanpcmad)*
|
5
4
|
|
6
|
-
|
7
|
-
[](http://badge.fury.io/rb/sidekiq-limit_fetch)
|
8
|
-
[](https://gemnasium.com/brainopia/sidekiq-limit_fetch)
|
9
|
-
[](https://codeclimate.com/github/brainopia/sidekiq-limit_fetch)
|
5
|
+
Sidekiq strategy to support a granular queue control – limiting, pausing, blocking, querying.
|
10
6
|
|
11
|
-
|
7
|
+
[](https://github.com/deanpcmad/sidekiq-limit_fetch/actions/workflows/ci.yml)
|
8
|
+
[](http://badge.fury.io/rb/sidekiq-limit_fetch)
|
9
|
+
|
10
|
+
### Installation
|
12
11
|
|
13
12
|
Add this line to your application's Gemfile:
|
14
13
|
|
15
|
-
|
14
|
+
```
|
15
|
+
gem 'sidekiq-limit_fetch'
|
16
|
+
```
|
17
|
+
|
18
|
+
Then `bundle install`.
|
16
19
|
|
17
|
-
###
|
20
|
+
### Limitations
|
18
21
|
|
19
22
|
**Important note:** At this moment, `sidekiq-limit_fetch` is incompatible with
|
20
23
|
- sidekiq pro's `reliable_fetch`
|
21
24
|
- `sidekiq-rate-limiter`
|
22
25
|
- any other plugin that rewrites fetch strategy of sidekiq.
|
23
26
|
|
24
|
-
|
27
|
+
### Usage
|
28
|
+
|
29
|
+
If you are using this with Rails, you don't need to require it as it's done automatically.
|
30
|
+
|
31
|
+
To use this Gem in other Ruby projects, just add `require 'sidekiq-limit_fetch'`.
|
25
32
|
|
26
33
|
### Limits
|
27
34
|
|
28
35
|
Specify limits which you want to place on queues inside sidekiq.yml:
|
29
36
|
|
30
37
|
```yaml
|
31
|
-
|
32
|
-
|
33
|
-
|
38
|
+
:limits:
|
39
|
+
queue_name1: 5
|
40
|
+
queue_name2: 10
|
34
41
|
```
|
35
42
|
|
36
43
|
Or set it dynamically in your code:
|
37
44
|
```ruby
|
38
|
-
|
39
|
-
|
45
|
+
Sidekiq::Queue['queue_name1'].limit = 5
|
46
|
+
Sidekiq::Queue['queue_name2'].limit = 10
|
40
47
|
```
|
41
48
|
|
42
|
-
In these examples, tasks for the
|
43
|
-
workers at the same time and the
|
49
|
+
In these examples, tasks for the `queue_name1` will be run by at most 5
|
50
|
+
workers at the same time and the `queue_name2` will have no more than 10
|
44
51
|
workers simultaneously.
|
45
52
|
|
46
53
|
Ability to set limits dynamically allows you to resize worker
|
@@ -51,14 +58,14 @@ distribution among queues any time you want.
|
|
51
58
|
If you use multiple sidekiq processes then you can specify limits per process:
|
52
59
|
|
53
60
|
```yaml
|
54
|
-
|
55
|
-
|
61
|
+
:process_limits:
|
62
|
+
queue_name: 2
|
56
63
|
```
|
57
64
|
|
58
65
|
Or set it in your code:
|
59
66
|
|
60
67
|
```ruby
|
61
|
-
|
68
|
+
Sidekiq::Queue['queue_name'].process_limit = 2
|
62
69
|
```
|
63
70
|
|
64
71
|
### Busy workers by queue
|
@@ -66,19 +73,19 @@ Or set it in your code:
|
|
66
73
|
You can see how many workers currently handling a queue:
|
67
74
|
|
68
75
|
```ruby
|
69
|
-
|
76
|
+
Sidekiq::Queue['name'].busy # number of busy workers
|
70
77
|
```
|
71
78
|
|
72
79
|
### Pauses
|
73
80
|
|
74
|
-
You can also pause your queues
|
81
|
+
You can also pause your queues temporarily. Upon continuing their limits
|
75
82
|
will be preserved.
|
76
83
|
|
77
84
|
```ruby
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
85
|
+
Sidekiq::Queue['name'].pause # prevents workers from running tasks from this queue
|
86
|
+
Sidekiq::Queue['name'].paused? # => true
|
87
|
+
Sidekiq::Queue['name'].unpause # allows workers to use the queue
|
88
|
+
Sidekiq::Queue['name'].pause_for_ms(1000) # will pause for a second
|
82
89
|
```
|
83
90
|
|
84
91
|
### Blocking queue mode
|
@@ -89,12 +96,12 @@ queue task is executing then no new task from lesser priority queues will
|
|
89
96
|
be ran. Eg,
|
90
97
|
|
91
98
|
```yaml
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
99
|
+
:queues:
|
100
|
+
- a
|
101
|
+
- b
|
102
|
+
- c
|
103
|
+
:blocking:
|
104
|
+
- b
|
98
105
|
```
|
99
106
|
|
100
107
|
In this case when a task for `b` queue is ran no new task from `c` queue
|
@@ -103,9 +110,9 @@ will be started.
|
|
103
110
|
You can also enable and disable blocking mode for queues on the fly:
|
104
111
|
|
105
112
|
```ruby
|
106
|
-
|
107
|
-
|
108
|
-
|
113
|
+
Sidekiq::Queue['name'].block
|
114
|
+
Sidekiq::Queue['name'].blocking? # => true
|
115
|
+
Sidekiq::Queue['name'].unblock
|
109
116
|
```
|
110
117
|
|
111
118
|
### Advanced blocking queues
|
@@ -115,13 +122,13 @@ running only queues higher and queues from their blocking group can
|
|
115
122
|
run. It will be easier to understand with an example:
|
116
123
|
|
117
124
|
```yaml
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
+
:queues:
|
126
|
+
- a
|
127
|
+
- b
|
128
|
+
- c
|
129
|
+
- d
|
130
|
+
:blocking:
|
131
|
+
- [b, c]
|
125
132
|
```
|
126
133
|
|
127
134
|
In this case tasks from `d` will be blocked when a task from queue `b` or `c` is executed.
|
@@ -129,7 +136,7 @@ In this case tasks from `d` will be blocked when a task from queue `b` or `c` is
|
|
129
136
|
You can dynamically set exceptions for queue blocking:
|
130
137
|
|
131
138
|
```ruby
|
132
|
-
|
139
|
+
Sidekiq::Queue['queue1'].block_except 'queue2'
|
133
140
|
```
|
134
141
|
|
135
142
|
### Dynamic queues
|
@@ -140,17 +147,11 @@ that have tasks pushed to them (usually with `Sidekiq::Client.push`)).
|
|
140
147
|
To use this mode you need to specify a following line in sidekiq.yml:
|
141
148
|
|
142
149
|
```yaml
|
143
|
-
|
150
|
+
:dynamic: true
|
144
151
|
```
|
145
152
|
|
146
153
|
Dynamic queues will be ran at the lowest priority.
|
147
154
|
|
148
155
|
### Maintenance
|
149
156
|
|
150
|
-
If you use
|
151
|
-
|
152
|
-
### Thanks
|
153
|
-
|
154
|
-
<a href="https://evilmartians.com/?utm_source=sidekiq-limit_fetch">
|
155
|
-
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"></a>
|
156
|
-
|
157
|
+
If you use `flushdb`, restart the sidekiq process to re-populate the dynamic configuration.
|
data/demo/Gemfile
CHANGED
data/demo/Rakefile
CHANGED
@@ -0,0 +1,56 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-limit_fetch (4.3.2)
|
5
|
+
redis (>= 4.6.0)
|
6
|
+
sidekiq (>= 4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
connection_pool (2.2.5)
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
rack (2.2.3.1)
|
18
|
+
rack-protection (2.2.0)
|
19
|
+
rack
|
20
|
+
rake (13.0.6)
|
21
|
+
redis (4.6.0)
|
22
|
+
redis-namespace (1.8.2)
|
23
|
+
redis (>= 3.0.4)
|
24
|
+
rspec (3.11.0)
|
25
|
+
rspec-core (~> 3.11.0)
|
26
|
+
rspec-expectations (~> 3.11.0)
|
27
|
+
rspec-mocks (~> 3.11.0)
|
28
|
+
rspec-core (3.11.0)
|
29
|
+
rspec-support (~> 3.11.0)
|
30
|
+
rspec-expectations (3.11.0)
|
31
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
32
|
+
rspec-support (~> 3.11.0)
|
33
|
+
rspec-mocks (3.11.1)
|
34
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
+
rspec-support (~> 3.11.0)
|
36
|
+
rspec-support (3.11.0)
|
37
|
+
sidekiq (6.0.7)
|
38
|
+
connection_pool (>= 2.2.2)
|
39
|
+
rack (~> 2.0)
|
40
|
+
rack-protection (>= 2.0.0)
|
41
|
+
redis (>= 4.1.0)
|
42
|
+
thor (1.2.1)
|
43
|
+
|
44
|
+
PLATFORMS
|
45
|
+
x86_64-linux
|
46
|
+
|
47
|
+
DEPENDENCIES
|
48
|
+
appraisal
|
49
|
+
rake
|
50
|
+
redis-namespace (~> 1.5, >= 1.5.2)
|
51
|
+
rspec
|
52
|
+
sidekiq (~> 6.0.0)
|
53
|
+
sidekiq-limit_fetch!
|
54
|
+
|
55
|
+
BUNDLED WITH
|
56
|
+
2.3.21
|
@@ -0,0 +1,53 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-limit_fetch (4.3.2)
|
5
|
+
redis (>= 4.6.0)
|
6
|
+
sidekiq (>= 4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
connection_pool (2.2.5)
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
rack (2.2.3.1)
|
18
|
+
rake (13.0.6)
|
19
|
+
redis (4.6.0)
|
20
|
+
redis-namespace (1.8.2)
|
21
|
+
redis (>= 3.0.4)
|
22
|
+
rspec (3.11.0)
|
23
|
+
rspec-core (~> 3.11.0)
|
24
|
+
rspec-expectations (~> 3.11.0)
|
25
|
+
rspec-mocks (~> 3.11.0)
|
26
|
+
rspec-core (3.11.0)
|
27
|
+
rspec-support (~> 3.11.0)
|
28
|
+
rspec-expectations (3.11.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.11.0)
|
31
|
+
rspec-mocks (3.11.1)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.11.0)
|
34
|
+
rspec-support (3.11.0)
|
35
|
+
sidekiq (6.1.3)
|
36
|
+
connection_pool (>= 2.2.2)
|
37
|
+
rack (~> 2.0)
|
38
|
+
redis (>= 4.2.0)
|
39
|
+
thor (1.2.1)
|
40
|
+
|
41
|
+
PLATFORMS
|
42
|
+
x86_64-linux
|
43
|
+
|
44
|
+
DEPENDENCIES
|
45
|
+
appraisal
|
46
|
+
rake
|
47
|
+
redis-namespace (~> 1.5, >= 1.5.2)
|
48
|
+
rspec
|
49
|
+
sidekiq (~> 6.1.0)
|
50
|
+
sidekiq-limit_fetch!
|
51
|
+
|
52
|
+
BUNDLED WITH
|
53
|
+
2.3.21
|
@@ -0,0 +1,53 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-limit_fetch (4.3.2)
|
5
|
+
redis (>= 4.6.0)
|
6
|
+
sidekiq (>= 4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
connection_pool (2.2.5)
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
rack (2.2.3.1)
|
18
|
+
rake (13.0.6)
|
19
|
+
redis (4.6.0)
|
20
|
+
redis-namespace (1.8.2)
|
21
|
+
redis (>= 3.0.4)
|
22
|
+
rspec (3.11.0)
|
23
|
+
rspec-core (~> 3.11.0)
|
24
|
+
rspec-expectations (~> 3.11.0)
|
25
|
+
rspec-mocks (~> 3.11.0)
|
26
|
+
rspec-core (3.11.0)
|
27
|
+
rspec-support (~> 3.11.0)
|
28
|
+
rspec-expectations (3.11.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.11.0)
|
31
|
+
rspec-mocks (3.11.1)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.11.0)
|
34
|
+
rspec-support (3.11.0)
|
35
|
+
sidekiq (6.2.2)
|
36
|
+
connection_pool (>= 2.2.2)
|
37
|
+
rack (~> 2.0)
|
38
|
+
redis (>= 4.2.0)
|
39
|
+
thor (1.2.1)
|
40
|
+
|
41
|
+
PLATFORMS
|
42
|
+
x86_64-linux
|
43
|
+
|
44
|
+
DEPENDENCIES
|
45
|
+
appraisal
|
46
|
+
rake
|
47
|
+
redis-namespace (~> 1.5, >= 1.5.2)
|
48
|
+
rspec
|
49
|
+
sidekiq (~> 6.2.0)
|
50
|
+
sidekiq-limit_fetch!
|
51
|
+
|
52
|
+
BUNDLED WITH
|
53
|
+
2.3.21
|
@@ -0,0 +1,53 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-limit_fetch (4.3.2)
|
5
|
+
redis (>= 4.6.0)
|
6
|
+
sidekiq (>= 4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
connection_pool (2.2.5)
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
rack (2.2.3.1)
|
18
|
+
rake (13.0.6)
|
19
|
+
redis (4.6.0)
|
20
|
+
redis-namespace (1.8.2)
|
21
|
+
redis (>= 3.0.4)
|
22
|
+
rspec (3.11.0)
|
23
|
+
rspec-core (~> 3.11.0)
|
24
|
+
rspec-expectations (~> 3.11.0)
|
25
|
+
rspec-mocks (~> 3.11.0)
|
26
|
+
rspec-core (3.11.0)
|
27
|
+
rspec-support (~> 3.11.0)
|
28
|
+
rspec-expectations (3.11.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.11.0)
|
31
|
+
rspec-mocks (3.11.1)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.11.0)
|
34
|
+
rspec-support (3.11.0)
|
35
|
+
sidekiq (6.3.1)
|
36
|
+
connection_pool (>= 2.2.2)
|
37
|
+
rack (~> 2.0)
|
38
|
+
redis (>= 4.2.0)
|
39
|
+
thor (1.2.1)
|
40
|
+
|
41
|
+
PLATFORMS
|
42
|
+
x86_64-linux
|
43
|
+
|
44
|
+
DEPENDENCIES
|
45
|
+
appraisal
|
46
|
+
rake
|
47
|
+
redis-namespace (~> 1.5, >= 1.5.2)
|
48
|
+
rspec
|
49
|
+
sidekiq (~> 6.3.0)
|
50
|
+
sidekiq-limit_fetch!
|
51
|
+
|
52
|
+
BUNDLED WITH
|
53
|
+
2.3.21
|
@@ -0,0 +1,53 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
sidekiq-limit_fetch (4.3.2)
|
5
|
+
redis (>= 4.6.0)
|
6
|
+
sidekiq (>= 4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
appraisal (2.4.1)
|
12
|
+
bundler
|
13
|
+
rake
|
14
|
+
thor (>= 0.14.0)
|
15
|
+
connection_pool (2.2.5)
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
rack (2.2.3.1)
|
18
|
+
rake (13.0.6)
|
19
|
+
redis (4.6.0)
|
20
|
+
redis-namespace (1.8.2)
|
21
|
+
redis (>= 3.0.4)
|
22
|
+
rspec (3.11.0)
|
23
|
+
rspec-core (~> 3.11.0)
|
24
|
+
rspec-expectations (~> 3.11.0)
|
25
|
+
rspec-mocks (~> 3.11.0)
|
26
|
+
rspec-core (3.11.0)
|
27
|
+
rspec-support (~> 3.11.0)
|
28
|
+
rspec-expectations (3.11.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.11.0)
|
31
|
+
rspec-mocks (3.11.1)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.11.0)
|
34
|
+
rspec-support (3.11.0)
|
35
|
+
sidekiq (6.4.2)
|
36
|
+
connection_pool (>= 2.2.2)
|
37
|
+
rack (~> 2.0)
|
38
|
+
redis (>= 4.2.0)
|
39
|
+
thor (1.2.1)
|
40
|
+
|
41
|
+
PLATFORMS
|
42
|
+
x86_64-linux
|
43
|
+
|
44
|
+
DEPENDENCIES
|
45
|
+
appraisal
|
46
|
+
rake
|
47
|
+
redis-namespace (~> 1.5, >= 1.5.2)
|
48
|
+
rspec
|
49
|
+
sidekiq (~> 6.4.0)
|
50
|
+
sidekiq-limit_fetch!
|
51
|
+
|
52
|
+
BUNDLED WITH
|
53
|
+
2.3.21
|