sidekiq 6.0.4 → 6.1.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq might be problematic. Click here for more details.

Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +13 -24
  3. data/Changes.md +58 -0
  4. data/Ent-Changes.md +20 -1
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +113 -104
  7. data/Pro-Changes.md +20 -1
  8. data/README.md +2 -5
  9. data/bin/sidekiq +26 -2
  10. data/lib/sidekiq.rb +9 -7
  11. data/lib/sidekiq/api.rb +9 -6
  12. data/lib/sidekiq/cli.rb +18 -9
  13. data/lib/sidekiq/client.rb +17 -10
  14. data/lib/sidekiq/extensions/active_record.rb +3 -2
  15. data/lib/sidekiq/extensions/class_methods.rb +5 -4
  16. data/lib/sidekiq/fetch.rb +20 -20
  17. data/lib/sidekiq/job_logger.rb +1 -1
  18. data/lib/sidekiq/launcher.rb +34 -7
  19. data/lib/sidekiq/logger.rb +9 -9
  20. data/lib/sidekiq/manager.rb +3 -3
  21. data/lib/sidekiq/monitor.rb +2 -2
  22. data/lib/sidekiq/processor.rb +5 -5
  23. data/lib/sidekiq/rails.rb +16 -18
  24. data/lib/sidekiq/redis_connection.rb +18 -13
  25. data/lib/sidekiq/sd_notify.rb +149 -0
  26. data/lib/sidekiq/systemd.rb +24 -0
  27. data/lib/sidekiq/testing.rb +1 -1
  28. data/lib/sidekiq/version.rb +1 -1
  29. data/lib/sidekiq/web.rb +16 -8
  30. data/lib/sidekiq/web/application.rb +6 -8
  31. data/lib/sidekiq/web/csrf_protection.rb +153 -0
  32. data/lib/sidekiq/web/helpers.rb +4 -7
  33. data/lib/sidekiq/web/router.rb +2 -4
  34. data/lib/sidekiq/worker.rb +4 -7
  35. data/sidekiq.gemspec +2 -3
  36. data/web/assets/javascripts/application.js +25 -27
  37. data/web/assets/stylesheets/application-dark.css +132 -124
  38. data/web/assets/stylesheets/application.css +5 -0
  39. data/web/locales/fr.yml +2 -2
  40. data/web/locales/ja.yml +2 -0
  41. data/web/locales/lt.yml +83 -0
  42. data/web/locales/pl.yml +4 -4
  43. data/web/locales/vi.yml +83 -0
  44. data/web/views/layout.erb +1 -1
  45. metadata +14 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bfe129c0a4abfedbab370011613f8acefe77791327e85993a4048be63507a6d
4
- data.tar.gz: 2a67cee7d61bf27ef76fb54fe077b981de6c9286c3e46dc7303e47a31087fb54
3
+ metadata.gz: 3e65c309b08d7da496e7181ff91980d43d8cf56e226fcd921c00e392dbecc22f
4
+ data.tar.gz: 45ff998fd67a0ca37c99176bc1a92c4160569106ff406d75c37e2a5968501d25
5
5
  SHA512:
6
- metadata.gz: a989ad41c075a9c7accf401d14da3ef28c836668a9e3f49ec09a61f7114b7198c3485ded79c06fa4bb3f3c22271db9a7eaae0f156667d400178d26d6055e7ef0
7
- data.tar.gz: f7200ade5b0f69f2ffbc8c708ed28d0efff3f6b6708ecdbe60ec22903ef2c58a78f362fc8a59540b045d17d91a0e19adbd647dbddd0a166f530087908715337d
6
+ metadata.gz: fd592b7657c04d8ff7363157a965233a0e6a74889d7ae44a9bf398143ab7847776dbb52cd5e1328125afabe25be79f6c72ae9f03283672e49ae3868bc99037ec
7
+ data.tar.gz: 10b3e967c94933d8a8b269499a71d9690759504398855edde5197ef6f6648d26fa201e131d9c7650c64b6baa2b5306cd40fe618c50e122d11247d8cd2e7a8bbb
@@ -3,7 +3,7 @@ references:
3
3
  unit: &unit
4
4
  run:
5
5
  name: Run test suite
6
- command: bundle exec rake
6
+ command: bundle exec rake COVERAGE=1
7
7
  restore: &restore
8
8
  restore_cache:
9
9
  keys:
@@ -32,36 +32,25 @@ jobs:
32
32
  - <<: *save
33
33
  - <<: *unit
34
34
  "ruby-2.6":
35
- environment:
36
- COVERAGE: true
37
- CC_TEST_REPORTER_ID: 003c3033501d70a2653bd887ff9a8b2884a263e6a4e27f2ba68748e15530918d
38
35
  docker:
39
36
  - image: circleci/ruby:2.6
40
- - image: circleci/redis:4.0
37
+ - image: circleci/redis:5.0
38
+ steps:
39
+ - checkout
40
+ - <<: *restore
41
+ - <<: *bundle
42
+ - <<: *save
43
+ - <<: *unit
44
+ "ruby-2.7":
45
+ docker:
46
+ - image: circleci/ruby:2.7
47
+ - image: circleci/redis:6.0
41
48
  steps:
42
49
  - checkout
43
50
  - <<: *restore
44
51
  - <<: *bundle
45
52
  - <<: *save
46
-
47
- - run:
48
- name: Setup Code Climate test-reporter
49
- command: |
50
- # download test reporter as a static binary
51
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
52
- chmod +x ./cc-test-reporter
53
-
54
- - run:
55
- name: Code Climate before-build
56
- command: |
57
- ./cc-test-reporter before-build
58
-
59
53
  - <<: *unit
60
-
61
- - run:
62
- name: Report code coverage to Code Climate
63
- command: |
64
- ./cc-test-reporter after-build -t simplecov --exit-code $?
65
54
  "jruby":
66
55
  docker:
67
56
  - image: circleci/jruby:latest
@@ -79,4 +68,4 @@ workflows:
79
68
  jobs:
80
69
  - "ruby-2.5"
81
70
  - "ruby-2.6"
82
- - "jruby"
71
+ - "ruby-2.7"
data/Changes.md CHANGED
@@ -2,6 +2,52 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
+ HEAD
6
+ ---------
7
+
8
+ - Jobs are now sorted by age in the Busy Workers table. [#4641]
9
+ - Fix "check all" JS logic in Web UI [#4619]
10
+
11
+ 6.1.0
12
+ ---------
13
+
14
+ - Web UI - Dark Mode fixes [#4543, natematykiewicz]
15
+ - Ensure `Rack::ContentLength` is loaded as middleware for correct Web UI responses [#4541]
16
+ - Avoid exception dumping SSL store in Redis connection logging [#4532]
17
+ - Better error messages in Sidekiq::Client [#4549]
18
+ - Remove rack-protection, reimplement CSRF protection [#4588]
19
+ - Require redis-rb 4.2 [#4591]
20
+ - Update to jquery 1.12.4 [#4593]
21
+ - Refactor internal fetch logic and API [#4602]
22
+
23
+ 6.0.7
24
+ ---------
25
+
26
+ - Refactor systemd integration to work better with custom binaries [#4511]
27
+ - Don't connect to Redis at process exit if not needed [#4502]
28
+ - Remove Redis connection naming [#4479]
29
+ - Fix Redis Sentinel password redaction [#4499]
30
+ - Add Vietnamese locale (vi) [#4528]
31
+
32
+ 6.0.6
33
+ ---------
34
+
35
+ - **Integrate with systemd's watchdog and notification features** [#4488]
36
+ Set `Type=notify` in [sidekiq.service](https://github.com/mperham/sidekiq/blob/4b8a8bd3ae42f6e48ae1fdaf95ed7d7af18ed8bb/examples/systemd/sidekiq.service#L30-L39). The integration works automatically.
37
+ - Use `setTimeout` rather than `setInterval` to avoid thundering herd [#4480]
38
+ - Fix edge case where a job can be pushed without a queue.
39
+ - Flush job stats at exit [#4498]
40
+ - Check RAILS_ENV before RACK_ENV [#4493]
41
+ - Add Lithuanian locale [#4476]
42
+
43
+ 6.0.5
44
+ ---------
45
+
46
+ - Fix broken Web UI response when using NewRelic and Rack 2.1.2+. [#4440]
47
+ - Update APIs to use `UNLINK`, not `DEL`. [#4449]
48
+ - Fix Ruby 2.7 warnings [#4412]
49
+ - Add support for `APP_ENV` [[95fa5d9]](https://github.com/mperham/sidekiq/commit/95fa5d90192148026e52ca2902f1b83c70858ce8)
50
+
5
51
  6.0.4
6
52
  ---------
7
53
 
@@ -132,6 +178,18 @@ See the [Logging wiki page](https://github.com/mperham/sidekiq/wiki/Logging) for
132
178
  - Integrate the StandardRB code formatter to ensure consistent code
133
179
  styling. [#4114, gearnode]
134
180
 
181
+ 5.2.9
182
+ ---------
183
+
184
+ - Release Rack lock due to a cascade of CVEs. [#4566]
185
+ Pro-tip: don't lock Rack.
186
+
187
+ 5.2.8
188
+ ---------
189
+
190
+ - Lock to Rack 2.0.x to prevent future incompatibilities
191
+ - Fix invalid reference in `sidekiqctl`
192
+
135
193
  5.2.7
136
194
  ---------
137
195
 
@@ -2,7 +2,26 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
- Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
5
+ Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
6
+
7
+ 2.1.1
8
+ -------------
9
+
10
+ - Add optional **app preload** in swarm, saves even more memory [#4646]
11
+ - Fix incorrect queue tags in historical metrics [#4377]
12
+
13
+ 2.1.0
14
+ -------------
15
+
16
+ - Move historical metrics to use tags rather than interpolating name [#4377]
17
+ ```
18
+ sidekiq.enqueued.#{name} -> sidekiq.queue.size with tag queue:#{name}
19
+ sidekiq.latency.#{name} -> sidekiq.queue.latency with tag queue:#{name}
20
+ ```
21
+ - Remove `concurrent-ruby` gem dependency [#4586]
22
+ - Add systemd `Type=notify` support for swarm [#4511]
23
+ - Length swarm's boot timeout to 60 sec [#4544]
24
+ - Add NL locale
6
25
 
7
26
  2.0.1
8
27
  -------------
data/Gemfile CHANGED
@@ -11,10 +11,10 @@ gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
11
11
  group :test do
12
12
  gem "minitest"
13
13
  gem "simplecov"
14
+ gem "codecov", require: false
14
15
  end
15
16
 
16
17
  group :development, :test do
17
- gem "pry-byebug", platforms: :mri
18
18
  gem "standard"
19
19
  end
20
20
 
@@ -1,87 +1,95 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sidekiq (6.0.4)
4
+ sidekiq (6.1.1)
5
5
  connection_pool (>= 2.2.2)
6
- rack (>= 2.0.0)
7
- rack-protection (>= 2.0.0)
8
- redis (>= 4.1.0)
6
+ rack (~> 2.0)
7
+ redis (>= 4.2.0)
9
8
 
10
9
  GEM
11
10
  remote: https://rubygems.org/
12
11
  specs:
13
- actioncable (6.0.2)
14
- actionpack (= 6.0.2)
12
+ actioncable (6.0.3.1)
13
+ actionpack (= 6.0.3.1)
15
14
  nio4r (~> 2.0)
16
15
  websocket-driver (>= 0.6.1)
17
- actionmailbox (6.0.2)
18
- actionpack (= 6.0.2)
19
- activejob (= 6.0.2)
20
- activerecord (= 6.0.2)
21
- activestorage (= 6.0.2)
22
- activesupport (= 6.0.2)
16
+ actionmailbox (6.0.3.1)
17
+ actionpack (= 6.0.3.1)
18
+ activejob (= 6.0.3.1)
19
+ activerecord (= 6.0.3.1)
20
+ activestorage (= 6.0.3.1)
21
+ activesupport (= 6.0.3.1)
23
22
  mail (>= 2.7.1)
24
- actionmailer (6.0.2)
25
- actionpack (= 6.0.2)
26
- actionview (= 6.0.2)
27
- activejob (= 6.0.2)
23
+ actionmailer (6.0.3.1)
24
+ actionpack (= 6.0.3.1)
25
+ actionview (= 6.0.3.1)
26
+ activejob (= 6.0.3.1)
28
27
  mail (~> 2.5, >= 2.5.4)
29
28
  rails-dom-testing (~> 2.0)
30
- actionpack (6.0.2)
31
- actionview (= 6.0.2)
32
- activesupport (= 6.0.2)
33
- rack (~> 2.0)
29
+ actionpack (6.0.3.1)
30
+ actionview (= 6.0.3.1)
31
+ activesupport (= 6.0.3.1)
32
+ rack (~> 2.0, >= 2.0.8)
34
33
  rack-test (>= 0.6.3)
35
34
  rails-dom-testing (~> 2.0)
36
35
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
- actiontext (6.0.2)
38
- actionpack (= 6.0.2)
39
- activerecord (= 6.0.2)
40
- activestorage (= 6.0.2)
41
- activesupport (= 6.0.2)
36
+ actiontext (6.0.3.1)
37
+ actionpack (= 6.0.3.1)
38
+ activerecord (= 6.0.3.1)
39
+ activestorage (= 6.0.3.1)
40
+ activesupport (= 6.0.3.1)
42
41
  nokogiri (>= 1.8.5)
43
- actionview (6.0.2)
44
- activesupport (= 6.0.2)
42
+ actionview (6.0.3.1)
43
+ activesupport (= 6.0.3.1)
45
44
  builder (~> 3.1)
46
45
  erubi (~> 1.4)
47
46
  rails-dom-testing (~> 2.0)
48
47
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
- activejob (6.0.2)
50
- activesupport (= 6.0.2)
48
+ activejob (6.0.3.1)
49
+ activesupport (= 6.0.3.1)
51
50
  globalid (>= 0.3.6)
52
- activemodel (6.0.2)
53
- activesupport (= 6.0.2)
54
- activerecord (6.0.2)
55
- activemodel (= 6.0.2)
56
- activesupport (= 6.0.2)
57
- activestorage (6.0.2)
58
- actionpack (= 6.0.2)
59
- activejob (= 6.0.2)
60
- activerecord (= 6.0.2)
51
+ activemodel (6.0.3.1)
52
+ activesupport (= 6.0.3.1)
53
+ activerecord (6.0.3.1)
54
+ activemodel (= 6.0.3.1)
55
+ activesupport (= 6.0.3.1)
56
+ activerecord-jdbc-adapter (60.1-java)
57
+ activerecord (~> 6.0.0)
58
+ activerecord-jdbcsqlite3-adapter (60.1-java)
59
+ activerecord-jdbc-adapter (= 60.1)
60
+ jdbc-sqlite3 (~> 3.8, < 3.30)
61
+ activestorage (6.0.3.1)
62
+ actionpack (= 6.0.3.1)
63
+ activejob (= 6.0.3.1)
64
+ activerecord (= 6.0.3.1)
61
65
  marcel (~> 0.3.1)
62
- activesupport (6.0.2)
66
+ activesupport (6.0.3.1)
63
67
  concurrent-ruby (~> 1.0, >= 1.0.2)
64
68
  i18n (>= 0.7, < 2)
65
69
  minitest (~> 5.1)
66
70
  tzinfo (~> 1.1)
67
- zeitwerk (~> 2.2)
68
- ast (2.4.0)
71
+ zeitwerk (~> 2.2, >= 2.2.2)
72
+ ast (2.4.1)
69
73
  builder (3.2.4)
70
- byebug (11.0.1)
71
- coderay (1.1.2)
72
- concurrent-ruby (1.1.5)
73
- connection_pool (2.2.2)
74
- crass (1.0.5)
74
+ codecov (0.1.17)
75
+ json
76
+ simplecov
77
+ url
78
+ concurrent-ruby (1.1.6)
79
+ connection_pool (2.2.3)
80
+ crass (1.0.6)
75
81
  docile (1.3.2)
76
82
  erubi (1.9.0)
77
83
  globalid (0.4.2)
78
84
  activesupport (>= 4.2.0)
79
85
  hiredis (0.6.3)
80
- i18n (1.7.0)
86
+ hiredis (0.6.3-java)
87
+ i18n (1.8.2)
81
88
  concurrent-ruby (~> 1.0)
82
- jaro_winkler (1.5.4)
83
- json (2.2.0)
84
- loofah (2.4.0)
89
+ jdbc-sqlite3 (3.28.0)
90
+ json (2.3.0)
91
+ json (2.3.0-java)
92
+ loofah (2.5.0)
85
93
  crass (~> 1.0.2)
86
94
  nokogiri (>= 1.5.9)
87
95
  mail (2.7.1)
@@ -89,73 +97,72 @@ GEM
89
97
  marcel (0.3.3)
90
98
  mimemagic (~> 0.3.2)
91
99
  method_source (0.9.2)
92
- mimemagic (0.3.3)
100
+ mimemagic (0.3.5)
93
101
  mini_mime (1.0.2)
94
102
  mini_portile2 (2.4.0)
95
- minitest (5.11.3)
103
+ minitest (5.14.1)
96
104
  nio4r (2.5.2)
97
- nokogiri (1.10.7)
105
+ nio4r (2.5.2-java)
106
+ nokogiri (1.10.9)
98
107
  mini_portile2 (~> 2.4.0)
99
- parallel (1.19.0)
100
- parser (2.6.5.0)
108
+ nokogiri (1.10.9-java)
109
+ parallel (1.19.2)
110
+ parser (2.7.1.3)
101
111
  ast (~> 2.4.0)
102
- pry (0.12.2)
103
- coderay (~> 1.1.0)
104
- method_source (~> 0.9.0)
105
- pry-byebug (3.7.0)
106
- byebug (~> 11.0)
107
- pry (~> 0.10)
108
- rack (2.0.7)
109
- rack-protection (2.0.7)
110
- rack
112
+ rack (2.2.2)
111
113
  rack-test (1.1.0)
112
114
  rack (>= 1.0, < 3)
113
- rails (6.0.2)
114
- actioncable (= 6.0.2)
115
- actionmailbox (= 6.0.2)
116
- actionmailer (= 6.0.2)
117
- actionpack (= 6.0.2)
118
- actiontext (= 6.0.2)
119
- actionview (= 6.0.2)
120
- activejob (= 6.0.2)
121
- activemodel (= 6.0.2)
122
- activerecord (= 6.0.2)
123
- activestorage (= 6.0.2)
124
- activesupport (= 6.0.2)
115
+ rails (6.0.3.1)
116
+ actioncable (= 6.0.3.1)
117
+ actionmailbox (= 6.0.3.1)
118
+ actionmailer (= 6.0.3.1)
119
+ actionpack (= 6.0.3.1)
120
+ actiontext (= 6.0.3.1)
121
+ actionview (= 6.0.3.1)
122
+ activejob (= 6.0.3.1)
123
+ activemodel (= 6.0.3.1)
124
+ activerecord (= 6.0.3.1)
125
+ activestorage (= 6.0.3.1)
126
+ activesupport (= 6.0.3.1)
125
127
  bundler (>= 1.3.0)
126
- railties (= 6.0.2)
128
+ railties (= 6.0.3.1)
127
129
  sprockets-rails (>= 2.0.0)
128
130
  rails-dom-testing (2.0.3)
129
131
  activesupport (>= 4.2.0)
130
132
  nokogiri (>= 1.6)
131
133
  rails-html-sanitizer (1.3.0)
132
134
  loofah (~> 2.3)
133
- railties (6.0.2)
134
- actionpack (= 6.0.2)
135
- activesupport (= 6.0.2)
135
+ railties (6.0.3.1)
136
+ actionpack (= 6.0.3.1)
137
+ activesupport (= 6.0.3.1)
136
138
  method_source
137
139
  rake (>= 0.8.7)
138
140
  thor (>= 0.20.3, < 2.0)
139
141
  rainbow (3.0.0)
140
- rake (12.3.3)
141
- redis (4.1.2)
142
- redis-namespace (1.6.0)
142
+ rake (13.0.1)
143
+ redis (4.2.0)
144
+ redis-namespace (1.7.0)
143
145
  redis (>= 3.0.4)
144
- rubocop (0.75.1)
145
- jaro_winkler (~> 1.5.1)
146
+ regexp_parser (1.7.1)
147
+ rexml (3.2.4)
148
+ rubocop (0.85.1)
146
149
  parallel (~> 1.10)
147
- parser (>= 2.6)
150
+ parser (>= 2.7.0.1)
148
151
  rainbow (>= 2.2.2, < 4.0)
152
+ regexp_parser (>= 1.7)
153
+ rexml
154
+ rubocop-ast (>= 0.0.3)
149
155
  ruby-progressbar (~> 1.7)
150
- unicode-display_width (>= 1.4.0, < 1.7)
151
- rubocop-performance (1.5.1)
156
+ unicode-display_width (>= 1.4.0, < 2.0)
157
+ rubocop-ast (0.0.3)
158
+ parser (>= 2.7.0.1)
159
+ rubocop-performance (1.6.1)
152
160
  rubocop (>= 0.71.0)
153
161
  ruby-progressbar (1.10.1)
154
- simplecov (0.17.0)
162
+ simplecov (0.18.5)
155
163
  docile (~> 1.1)
156
- json (>= 1.8, < 3)
157
- simplecov-html (~> 0.10.0)
158
- simplecov-html (0.10.2)
164
+ simplecov-html (~> 0.11)
165
+ simplecov-html (0.12.2)
159
166
  sprockets (4.0.0)
160
167
  concurrent-ruby (~> 1.0)
161
168
  rack (> 1, < 3)
@@ -163,29 +170,34 @@ GEM
163
170
  actionpack (>= 4.0)
164
171
  activesupport (>= 4.0)
165
172
  sprockets (>= 3.0.0)
166
- sqlite3 (1.4.1)
167
- standard (0.1.6)
168
- rubocop (~> 0.75.0)
169
- rubocop-performance (~> 1.5.0)
173
+ sqlite3 (1.4.2)
174
+ standard (0.4.7)
175
+ rubocop (~> 0.85.0)
176
+ rubocop-performance (~> 1.6.0)
170
177
  thor (1.0.1)
171
178
  thread_safe (0.3.6)
179
+ thread_safe (0.3.6-java)
172
180
  toxiproxy (1.0.3)
173
- tzinfo (1.2.5)
181
+ tzinfo (1.2.7)
174
182
  thread_safe (~> 0.1)
175
- unicode-display_width (1.6.0)
176
- websocket-driver (0.7.1)
183
+ unicode-display_width (1.7.0)
184
+ url (0.3.2)
185
+ websocket-driver (0.7.2)
186
+ websocket-extensions (>= 0.1.0)
187
+ websocket-driver (0.7.2-java)
177
188
  websocket-extensions (>= 0.1.0)
178
189
  websocket-extensions (0.1.4)
179
- zeitwerk (2.2.2)
190
+ zeitwerk (2.3.0)
180
191
 
181
192
  PLATFORMS
193
+ java
182
194
  ruby
183
195
 
184
196
  DEPENDENCIES
185
197
  activerecord-jdbcsqlite3-adapter
198
+ codecov
186
199
  hiredis
187
200
  minitest
188
- pry-byebug
189
201
  rails (>= 6.0.2)
190
202
  rake
191
203
  redis-namespace
@@ -194,6 +206,3 @@ DEPENDENCIES
194
206
  sqlite3
195
207
  standard
196
208
  toxiproxy
197
-
198
- BUNDLED WITH
199
- 1.17.2