sidekiq 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 (127) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +71 -0
  3. data/.github/contributing.md +32 -0
  4. data/.github/issue_template.md +11 -0
  5. data/.gitignore +13 -0
  6. data/.standard.yml +20 -0
  7. data/3.0-Upgrade.md +70 -0
  8. data/4.0-Upgrade.md +53 -0
  9. data/5.0-Upgrade.md +56 -0
  10. data/6.0-Upgrade.md +72 -0
  11. data/COMM-LICENSE +97 -0
  12. data/Changes.md +1724 -0
  13. data/Ent-2.0-Upgrade.md +37 -0
  14. data/Ent-Changes.md +275 -0
  15. data/Gemfile +24 -0
  16. data/Gemfile.lock +208 -0
  17. data/LICENSE +9 -0
  18. data/Pro-2.0-Upgrade.md +138 -0
  19. data/Pro-3.0-Upgrade.md +44 -0
  20. data/Pro-4.0-Upgrade.md +35 -0
  21. data/Pro-5.0-Upgrade.md +25 -0
  22. data/Pro-Changes.md +795 -0
  23. data/README.md +94 -0
  24. data/Rakefile +10 -0
  25. data/bin/sidekiq +42 -0
  26. data/bin/sidekiqload +157 -0
  27. data/bin/sidekiqmon +8 -0
  28. data/code_of_conduct.md +50 -0
  29. data/lib/generators/sidekiq/templates/worker.rb.erb +9 -0
  30. data/lib/generators/sidekiq/templates/worker_spec.rb.erb +6 -0
  31. data/lib/generators/sidekiq/templates/worker_test.rb.erb +8 -0
  32. data/lib/generators/sidekiq/worker_generator.rb +57 -0
  33. data/lib/sidekiq.rb +262 -0
  34. data/lib/sidekiq/api.rb +963 -0
  35. data/lib/sidekiq/cli.rb +396 -0
  36. data/lib/sidekiq/client.rb +263 -0
  37. data/lib/sidekiq/delay.rb +41 -0
  38. data/lib/sidekiq/exception_handler.rb +27 -0
  39. data/lib/sidekiq/extensions/action_mailer.rb +47 -0
  40. data/lib/sidekiq/extensions/active_record.rb +43 -0
  41. data/lib/sidekiq/extensions/class_methods.rb +43 -0
  42. data/lib/sidekiq/extensions/generic_proxy.rb +31 -0
  43. data/lib/sidekiq/fetch.rb +80 -0
  44. data/lib/sidekiq/job_logger.rb +63 -0
  45. data/lib/sidekiq/job_retry.rb +262 -0
  46. data/lib/sidekiq/launcher.rb +206 -0
  47. data/lib/sidekiq/logger.rb +165 -0
  48. data/lib/sidekiq/manager.rb +135 -0
  49. data/lib/sidekiq/middleware/chain.rb +160 -0
  50. data/lib/sidekiq/middleware/i18n.rb +40 -0
  51. data/lib/sidekiq/monitor.rb +133 -0
  52. data/lib/sidekiq/paginator.rb +47 -0
  53. data/lib/sidekiq/processor.rb +280 -0
  54. data/lib/sidekiq/rails.rb +50 -0
  55. data/lib/sidekiq/redis_connection.rb +146 -0
  56. data/lib/sidekiq/scheduled.rb +173 -0
  57. data/lib/sidekiq/sd_notify.rb +149 -0
  58. data/lib/sidekiq/systemd.rb +24 -0
  59. data/lib/sidekiq/testing.rb +344 -0
  60. data/lib/sidekiq/testing/inline.rb +30 -0
  61. data/lib/sidekiq/util.rb +67 -0
  62. data/lib/sidekiq/version.rb +5 -0
  63. data/lib/sidekiq/web.rb +213 -0
  64. data/lib/sidekiq/web/action.rb +93 -0
  65. data/lib/sidekiq/web/application.rb +357 -0
  66. data/lib/sidekiq/web/csrf_protection.rb +153 -0
  67. data/lib/sidekiq/web/helpers.rb +333 -0
  68. data/lib/sidekiq/web/router.rb +101 -0
  69. data/lib/sidekiq/worker.rb +244 -0
  70. data/sidekiq.gemspec +20 -0
  71. data/web/assets/images/favicon.ico +0 -0
  72. data/web/assets/images/logo.png +0 -0
  73. data/web/assets/images/status.png +0 -0
  74. data/web/assets/javascripts/application.js +90 -0
  75. data/web/assets/javascripts/dashboard.js +296 -0
  76. data/web/assets/stylesheets/application-dark.css +133 -0
  77. data/web/assets/stylesheets/application-rtl.css +246 -0
  78. data/web/assets/stylesheets/application.css +1158 -0
  79. data/web/assets/stylesheets/bootstrap-rtl.min.css +9 -0
  80. data/web/assets/stylesheets/bootstrap.css +5 -0
  81. data/web/locales/ar.yml +81 -0
  82. data/web/locales/cs.yml +78 -0
  83. data/web/locales/da.yml +68 -0
  84. data/web/locales/de.yml +81 -0
  85. data/web/locales/el.yml +68 -0
  86. data/web/locales/en.yml +83 -0
  87. data/web/locales/es.yml +70 -0
  88. data/web/locales/fa.yml +80 -0
  89. data/web/locales/fr.yml +78 -0
  90. data/web/locales/he.yml +79 -0
  91. data/web/locales/hi.yml +75 -0
  92. data/web/locales/it.yml +69 -0
  93. data/web/locales/ja.yml +83 -0
  94. data/web/locales/ko.yml +68 -0
  95. data/web/locales/lt.yml +83 -0
  96. data/web/locales/nb.yml +77 -0
  97. data/web/locales/nl.yml +68 -0
  98. data/web/locales/pl.yml +59 -0
  99. data/web/locales/pt-br.yml +68 -0
  100. data/web/locales/pt.yml +67 -0
  101. data/web/locales/ru.yml +78 -0
  102. data/web/locales/sv.yml +68 -0
  103. data/web/locales/ta.yml +75 -0
  104. data/web/locales/uk.yml +76 -0
  105. data/web/locales/ur.yml +80 -0
  106. data/web/locales/vi.yml +83 -0
  107. data/web/locales/zh-cn.yml +68 -0
  108. data/web/locales/zh-tw.yml +68 -0
  109. data/web/views/_footer.erb +20 -0
  110. data/web/views/_job_info.erb +89 -0
  111. data/web/views/_nav.erb +52 -0
  112. data/web/views/_paging.erb +23 -0
  113. data/web/views/_poll_link.erb +7 -0
  114. data/web/views/_status.erb +4 -0
  115. data/web/views/_summary.erb +40 -0
  116. data/web/views/busy.erb +101 -0
  117. data/web/views/dashboard.erb +75 -0
  118. data/web/views/dead.erb +34 -0
  119. data/web/views/layout.erb +41 -0
  120. data/web/views/morgue.erb +78 -0
  121. data/web/views/queue.erb +55 -0
  122. data/web/views/queues.erb +38 -0
  123. data/web/views/retries.erb +83 -0
  124. data/web/views/retry.erb +34 -0
  125. data/web/views/scheduled.erb +57 -0
  126. data/web/views/scheduled_job_info.erb +8 -0
  127. metadata +212 -0
@@ -0,0 +1,37 @@
1
+ # Welcome to Sidekiq Enterprise 2.0!
2
+
3
+ Sidekiq Enterprise 2.0 adds a few new features and adds the requirement that license
4
+ credentials be available at runtime. Note that Sidekiq 6.0 does have major breaking changes.
5
+
6
+ ## What's New
7
+
8
+ * Sidekiq Enterprise now requires license credentials at runtime. If you
9
+ configured Bundler as described in the access email you need do
10
+ nothing, everything should just work. If you are vendoring Sidekiq
11
+ Enterprise you will need to configure Bundler also or set
12
+ `SIDEKIQ_ENT_USERNAME=abcdef12 bundle exec sidekiq...` when starting the
13
+ process. [#4232]
14
+ * Dead jobs now release any unique locks they were holding when they died [#4162]
15
+ * Backoff can now be customized per rate limiter by passing in a Proc [#4219]
16
+ ```ruby
17
+ limiter = Sidekiq::Limiter.bucket(:stripe, 10, :second, backoff: ->(limiter, job) {
18
+ return job['overrated'] || 5 # wait for N seconds, where N is the number of
19
+ # times we've failed the rate limit
20
+ })
21
+ ```
22
+ * Removed deprecated APIs and warnings.
23
+ * Various changes for Sidekiq 6.0
24
+ * Requires Ruby 2.5+ and Redis 4.0+
25
+ * Requires Sidekiq 6.0+ and Sidekiq Pro 5.0+
26
+
27
+ ## Upgrade
28
+
29
+ * Upgrade to the latest Sidekiq Enterprise 1.x.
30
+ ```ruby
31
+ gem 'sidekiq-ent', '< 2'
32
+ ```
33
+ * Fix any deprecation warnings you see.
34
+ * Upgrade to 2.x.
35
+ ```ruby
36
+ gem 'sidekiq-ent', '< 3'
37
+ ```
@@ -0,0 +1,275 @@
1
+ # Sidekiq Enterprise Changelog
2
+
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
+
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
25
+
26
+ 2.0.1
27
+ -------------
28
+
29
+ - Periodic job registration API adjusted to avoid loading classes in initializer [#4271]
30
+ - Remove support for deprecated ENV variables (COUNT, MAXMEM\_MB, INDEX) in swarm code
31
+
32
+ 2.0.0
33
+ -------------
34
+
35
+ - Except for the [newly required credentials](https://github.com/mperham/sidekiq/issues/4232), Sidekiq Enterprise 2.0 does
36
+ not have any significant migration steps.
37
+ - Sidekiq Enterprise must now be started with valid license credentials. [#4232]
38
+ - Call `GC.compact` if possible in sidekiqswarm before forking [#4181]
39
+ - Changes for forward-compatibility with Sidekiq 6.0.
40
+ - Add death handler to remove any lingering unique locks [#4162]
41
+ - Backoff can now be customized per rate limiter [#4219]
42
+ - Code formatting changes for StandardRB
43
+
44
+ 1.8.1
45
+ -------------
46
+
47
+ - Fix excessive lock reclaims with concurrent limiter [#4105]
48
+ - Add ES translations, see issues [#3949](https://github.com/mperham/sidekiq/issues/3949) and [#3951](https://github.com/mperham/sidekiq/issues/3951) to add your own language.
49
+
50
+ 1.8.0
51
+ -------------
52
+
53
+ - Require Sidekiq Pro 4.0 and Sidekiq 5.2.
54
+ - Refactor historical metrics API to use revamped Statsd support in Sidekiq Pro
55
+ - Add a gauge to historical metrics for `default` queue latency [#4079]
56
+
57
+ 1.7.2
58
+ -------------
59
+
60
+ - Add PT and JA translations
61
+ - Fix elapsed time calculations to use monotonic clock [#4000, sj26]
62
+ - Fix edge case where flapping leadership would cause old periodic
63
+ jobs to be fired once [#3974]
64
+ - Add support for sidekiqswarm memory monitoring on FreeBSD [#3884]
65
+
66
+ 1.7.1
67
+ -------------
68
+
69
+ - Fix Lua error in concurrent rate limiter under heavy contention
70
+ - Remove superfluous `freeze` calls on Strings [#3759]
71
+
72
+ 1.7.0
73
+ -------------
74
+
75
+ - **NEW FEATURE** [Rolling restarts](https://github.com/mperham/sidekiq/wiki/Ent-Rolling-Restarts) - great for long running jobs!
76
+ - Adjust middleware so unique jobs that don't push aren't registered in a Batch [#3662]
77
+ - Add new unlimited rate limiter, useful for testing [#3743]
78
+ ```ruby
79
+ limiter = Sidekiq::Limiter.unlimited(...any args...)
80
+ ```
81
+
82
+ 1.6.1
83
+ -------------
84
+
85
+ - Fix crash in rate limiter middleware when used with custom exceptions [#3604]
86
+
87
+ 1.6.0
88
+ -------------
89
+
90
+ - Show process "leader" tag on Busy page, requires Sidekiq 5.0.2 [#2867]
91
+ - Capture custom metrics with the `save_history` API. [#2815]
92
+ - Implement new `unique_until: 'start'` policy option. [#3471]
93
+
94
+ 1.5.4
95
+ -------------
96
+
97
+ - Fix broken Cron page in Web UI [#3458]
98
+
99
+ 1.5.3
100
+ -------------
101
+
102
+ - Remove dependency on the algorithms gem [#3446]
103
+ - Allow user to specify max memory in megabytes with SIDEKIQ\_MAXMEM\_MB [#3451]
104
+ - Implement logic to detect app startup failure, sidekiqswarm will exit
105
+ rather than try to restart the app forever [#3450]
106
+ - Another fix for doubly-encrypted arguments [#3368]
107
+
108
+ 1.5.2
109
+ -------------
110
+
111
+ - Fix encrypted arguments double-encrypted by retry or rate limiting [#3368]
112
+ - Fix leak in concurrent rate limiter, run this in Rails console to clean up existing data [#3323]
113
+ ```ruby
114
+ expiry = 1.month.to_i; Sidekiq::Limiter.redis { |c| c.scan_each(match: "lmtr-cfree-*") { |key| c.expire(key, expiry) } }
115
+ ```
116
+
117
+ 1.5.1
118
+ -------------
119
+
120
+ - Fix issue with census startup when not using Bundler configuration for
121
+ source credentials.
122
+
123
+ 1.5.0
124
+ -------------
125
+
126
+ - Add new web authorization API [#3251]
127
+ - Update all sidekiqswarm env vars to use SIDEKIQ\_ prefix [#3218]
128
+ - Add census reporting, the leader will ping contribsys nightly with aggregate usage metrics
129
+
130
+ 1.4.0
131
+ -------------
132
+
133
+ - No functional changes, require latest Sidekiq and Sidekiq Pro versions
134
+
135
+ 1.3.2
136
+ -------------
137
+
138
+ - Upgrade encryption to use OpenSSL's more secure GCM mode. [#3060]
139
+
140
+ 1.3.1
141
+ -------------
142
+
143
+ - Fix multi-process memory monitoring on CentOS 6.x [#3063]
144
+ - Polish the new encryption feature a bit.
145
+
146
+ 1.3.0
147
+ -------------
148
+
149
+ - **BETA** [New encryption feature](https://github.com/mperham/sidekiq/wiki/Ent-Encryption)
150
+ which automatically encrypts the last argument of a Worker, aka the secret bag.
151
+
152
+ 1.2.4
153
+ -------------
154
+
155
+ - Fix issue causing some minutely jobs to execute every other minute.
156
+ - Log a warning if slow periodic processing causes us to miss a clock tick.
157
+
158
+ 1.2.3
159
+ -------------
160
+
161
+ - Periodic jobs could stop executing until process restart if Redis goes down [#3047]
162
+
163
+ 1.2.2
164
+ -------------
165
+
166
+ - Add API to check if a unique lock is present. See [#2932] for details.
167
+ - Tune concurrent limiters to minimize thread thrashing under heavy contention. [#2944]
168
+ - Add option for tuning which Bundler groups get preloaded with `sidekiqswarm` [#3025]
169
+ ```
170
+ SIDEKIQ_PRELOAD=default,production bin/sidekiqswarm ...
171
+ # Use an empty value for maximum application compatibility
172
+ SIDEKIQ_PRELOAD= bin/sidekiqswarm ...
173
+ ```
174
+
175
+ 1.2.1
176
+ -------------
177
+
178
+ - Multi-Process mode can now monitor the RSS memory of children and
179
+ restart any that grow too large. To limit children to 1GB each:
180
+ ```
181
+ MAXMEM_KB=1048576 COUNT=2 bundle exec sidekiqswarm ...
182
+ ```
183
+
184
+ 1.2.0
185
+ -------------
186
+
187
+ - **NEW FEATURE** Multi-process mode! Sidekiq Enterprise can now fork multiple worker
188
+ processes, enabling significant memory savings. See the [wiki
189
+ documentation](https://github.com/mperham/sidekiq/wiki/Ent-Multi-Process) for details.
190
+
191
+
192
+ 0.7.10
193
+ -------------
194
+
195
+ - More precise gemspec dependency versioning
196
+
197
+ 1.1.0
198
+ -------------
199
+
200
+ - **NEW FEATURE** Historical queue metrics, [documented in the wiki](https://github.com/mperham/sidekiq/wiki/Ent-Historical-Metrics) [#2719]
201
+
202
+ 0.7.9, 1.0.2
203
+ -------------
204
+
205
+ - Window limiters can now accept arbitrary window sizes [#2686]
206
+ - Fix race condition in window limiters leading to non-stop OverLimit [#2704]
207
+ - Fix invalid overage counts when nesting concurrent limiters
208
+
209
+ 1.0.1
210
+ ----------
211
+
212
+ - Fix crash in periodic subsystem when a follower shuts down, thanks
213
+ to @justinko for reporting.
214
+
215
+ 1.0.0
216
+ ----------
217
+
218
+ - Enterprise 1.x targets Sidekiq 4.x.
219
+ - Rewrite several features to remove Celluloid dependency. No
220
+ functional changes.
221
+
222
+ 0.7.8
223
+ ----------
224
+
225
+ - Fix `unique_for: false` [#2658]
226
+
227
+
228
+ 0.7.7
229
+ ----------
230
+
231
+ - Enterprise 0.x targets Sidekiq 3.x.
232
+ - Fix racy shutdown event which could lead to disappearing periodic
233
+ jobs, requires Sidekiq >= 3.5.3.
234
+ - Add new :leader event which is fired when a process gains leadership.
235
+
236
+ 0.7.6
237
+ ----------
238
+
239
+ - Redesign how overrated jobs are rescheduled to avoid creating new
240
+ jobs. [#2619]
241
+
242
+ 0.7.5
243
+ ----------
244
+
245
+ - Fix dynamic creation of concurrent limiters [#2617]
246
+
247
+ 0.7.4
248
+ ----------
249
+ - Add additional check to prevent duplicate periodic job creation
250
+ - Allow user-specified TTLs for rate limiters [#2607]
251
+ - Paginate rate limiter index page [#2606]
252
+
253
+ 0.7.3
254
+ ----------
255
+
256
+ - Rework `Sidekiq::Limiter` redis handling to match global redis handling.
257
+ - Allow user to customize rate limit backoff logic and handle custom
258
+ rate limit errors.
259
+ - Fix scalability issue with Limiter index page.
260
+
261
+ 0.7.2
262
+ ----------
263
+
264
+ - Fix typo which prevented limiters with '0' in their names.
265
+
266
+ 0.7.1
267
+ ----------
268
+
269
+ - Fix issue where unique scheduled jobs can't be enqueued upon schedule
270
+ due to the existing unique lock. [#2499]
271
+
272
+ 0.7.0
273
+ ----------
274
+
275
+ Initial release.
data/Gemfile ADDED
@@ -0,0 +1,24 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem "rake"
6
+ gem "redis-namespace"
7
+ gem "rails", ">= 6.0.2"
8
+ gem "sqlite3", platforms: :ruby
9
+ gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
10
+
11
+ group :test do
12
+ gem "minitest"
13
+ gem "simplecov"
14
+ gem "codecov", require: false
15
+ end
16
+
17
+ group :development, :test do
18
+ gem "standard"
19
+ end
20
+
21
+ group :load_test do
22
+ gem "hiredis"
23
+ gem "toxiproxy"
24
+ end
@@ -0,0 +1,208 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ sidekiq (6.1.1)
5
+ connection_pool (>= 2.2.2)
6
+ rack (~> 2.0)
7
+ redis (>= 4.2.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (6.0.3.1)
13
+ actionpack (= 6.0.3.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
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)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.0.3.1)
24
+ actionpack (= 6.0.3.1)
25
+ actionview (= 6.0.3.1)
26
+ activejob (= 6.0.3.1)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 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)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
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)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.0.3.1)
43
+ activesupport (= 6.0.3.1)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.0.3.1)
49
+ activesupport (= 6.0.3.1)
50
+ globalid (>= 0.3.6)
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)
65
+ marcel (~> 0.3.1)
66
+ activesupport (6.0.3.1)
67
+ concurrent-ruby (~> 1.0, >= 1.0.2)
68
+ i18n (>= 0.7, < 2)
69
+ minitest (~> 5.1)
70
+ tzinfo (~> 1.1)
71
+ zeitwerk (~> 2.2, >= 2.2.2)
72
+ ast (2.4.1)
73
+ builder (3.2.4)
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)
81
+ docile (1.3.2)
82
+ erubi (1.9.0)
83
+ globalid (0.4.2)
84
+ activesupport (>= 4.2.0)
85
+ hiredis (0.6.3)
86
+ hiredis (0.6.3-java)
87
+ i18n (1.8.2)
88
+ concurrent-ruby (~> 1.0)
89
+ jdbc-sqlite3 (3.28.0)
90
+ json (2.3.0)
91
+ json (2.3.0-java)
92
+ loofah (2.5.0)
93
+ crass (~> 1.0.2)
94
+ nokogiri (>= 1.5.9)
95
+ mail (2.7.1)
96
+ mini_mime (>= 0.1.1)
97
+ marcel (0.3.3)
98
+ mimemagic (~> 0.3.2)
99
+ method_source (0.9.2)
100
+ mimemagic (0.3.5)
101
+ mini_mime (1.0.2)
102
+ mini_portile2 (2.4.0)
103
+ minitest (5.14.1)
104
+ nio4r (2.5.2)
105
+ nio4r (2.5.2-java)
106
+ nokogiri (1.10.9)
107
+ mini_portile2 (~> 2.4.0)
108
+ nokogiri (1.10.9-java)
109
+ parallel (1.19.2)
110
+ parser (2.7.1.3)
111
+ ast (~> 2.4.0)
112
+ rack (2.2.2)
113
+ rack-test (1.1.0)
114
+ rack (>= 1.0, < 3)
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)
127
+ bundler (>= 1.3.0)
128
+ railties (= 6.0.3.1)
129
+ sprockets-rails (>= 2.0.0)
130
+ rails-dom-testing (2.0.3)
131
+ activesupport (>= 4.2.0)
132
+ nokogiri (>= 1.6)
133
+ rails-html-sanitizer (1.3.0)
134
+ loofah (~> 2.3)
135
+ railties (6.0.3.1)
136
+ actionpack (= 6.0.3.1)
137
+ activesupport (= 6.0.3.1)
138
+ method_source
139
+ rake (>= 0.8.7)
140
+ thor (>= 0.20.3, < 2.0)
141
+ rainbow (3.0.0)
142
+ rake (13.0.1)
143
+ redis (4.2.0)
144
+ redis-namespace (1.7.0)
145
+ redis (>= 3.0.4)
146
+ regexp_parser (1.7.1)
147
+ rexml (3.2.4)
148
+ rubocop (0.85.1)
149
+ parallel (~> 1.10)
150
+ parser (>= 2.7.0.1)
151
+ rainbow (>= 2.2.2, < 4.0)
152
+ regexp_parser (>= 1.7)
153
+ rexml
154
+ rubocop-ast (>= 0.0.3)
155
+ ruby-progressbar (~> 1.7)
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)
160
+ rubocop (>= 0.71.0)
161
+ ruby-progressbar (1.10.1)
162
+ simplecov (0.18.5)
163
+ docile (~> 1.1)
164
+ simplecov-html (~> 0.11)
165
+ simplecov-html (0.12.2)
166
+ sprockets (4.0.0)
167
+ concurrent-ruby (~> 1.0)
168
+ rack (> 1, < 3)
169
+ sprockets-rails (3.2.1)
170
+ actionpack (>= 4.0)
171
+ activesupport (>= 4.0)
172
+ sprockets (>= 3.0.0)
173
+ sqlite3 (1.4.2)
174
+ standard (0.4.7)
175
+ rubocop (~> 0.85.0)
176
+ rubocop-performance (~> 1.6.0)
177
+ thor (1.0.1)
178
+ thread_safe (0.3.6)
179
+ thread_safe (0.3.6-java)
180
+ toxiproxy (1.0.3)
181
+ tzinfo (1.2.7)
182
+ thread_safe (~> 0.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)
188
+ websocket-extensions (>= 0.1.0)
189
+ websocket-extensions (0.1.4)
190
+ zeitwerk (2.3.0)
191
+
192
+ PLATFORMS
193
+ java
194
+ ruby
195
+
196
+ DEPENDENCIES
197
+ activerecord-jdbcsqlite3-adapter
198
+ codecov
199
+ hiredis
200
+ minitest
201
+ rails (>= 6.0.2)
202
+ rake
203
+ redis-namespace
204
+ sidekiq!
205
+ simplecov
206
+ sqlite3
207
+ standard
208
+ toxiproxy