sentry-resque 6.6.2 → 6.7.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7768e8f877ba89276aaac3e5b29256a1f330783b12b67ea821dd997484609ebe
4
- data.tar.gz: d2cde8f9d8b49ff425299407dab9229712bc4f4da522c20e7643bf5098423e29
3
+ metadata.gz: 7dd5c3744afa14ff547524c5f15cfa7b0d6182b4ac7bb1121ee3260f91261ab9
4
+ data.tar.gz: '003689a5fe8b96a908f6f54394ac2009bd14d8f4327b1fb955aa881a0fb2237e'
5
5
  SHA512:
6
- metadata.gz: 60c8b37457f49acf6db6a21377477cb058d57899f8dd8d6d57914bb5095dce0758783c0dbaf7d65a8b9b6ce91a61fbde1992a1e83b5b6fcde65480213bd0c442
7
- data.tar.gz: 2197cfcc67c8e0b77e78d50e8e60fc31f0c7496ee3c5384084c118c451acf408d943d1c2d9c52de9dda7e0088516ac30d758e036b053a4d7deb237f639a07d3a
6
+ metadata.gz: c71d601055b6f0b222cde849ac84c608c6125706ac756e69df843bb48f659be2138963becfd44ca02c10084a560618c06a5028c89aea6fc12c4fee8cb834b15c
7
+ data.tar.gz: 42e315fdc8ab627a1b37fff18574345fbb49daabe8ed15bf1f3d461e28f850b26cac7844a7f8df552aafb18768f39dc56c29e00399fcedf0925809801028ac60
data/Gemfile CHANGED
@@ -12,7 +12,5 @@ gem "sentry-ruby", path: "../sentry-ruby"
12
12
 
13
13
  gem "resque-retry", "~> 1.8"
14
14
 
15
- group :rails do
16
- gem "sentry-rails", path: "../sentry-rails"
17
- gem "rails", "> 5.2.0"
18
- end
15
+ gem "sentry-rails", path: "../sentry-rails"
16
+ gem "rails", "> 5.2.0"
data/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
 
13
13
  [![Gem Version](https://img.shields.io/gem/v/sentry-resque.svg)](https://rubygems.org/gems/sentry-resque)
14
- ![Build Status](https://github.com/getsentry/sentry-ruby/actions/workflows/sentry_resque_test.yml/badge.svg)
14
+ ![Build Status](https://github.com/getsentry/sentry-ruby/actions/workflows/tests.yml/badge.svg)
15
15
  [![Coverage Status](https://img.shields.io/codecov/c/github/getsentry/sentry-ruby/master?logo=codecov)](https://codecov.io/gh/getsentry/sentry-ruby/branch/master)
16
16
  [![Gem](https://img.shields.io/gem/dt/sentry-resque.svg)](https://rubygems.org/gems/sentry-resque/)
17
17
  [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=sentry-resque&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=sentry-resque&package-manager=bundler&version-scheme=semver)
data/bin/test ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # Thin wrapper so you can run this gem's specs from inside its own directory:
4
+ # forwards to the repo-root bin/test scoped to this gem (--gem <thisgem>). All
5
+ # args pass through, so spec paths and flags work as documented there.
6
+ #
7
+ # bin/test # auto-pick the newest installed Ruby cell
8
+ # bin/test spec/.../foo_spec.rb # forward args to rspec
9
+ # bin/test --cell <path> # pin an exact cell
10
+ # bin/test --rake # run `bundle exec rake` like CI
11
+ #
12
+ # See `../../bin/test --help` for the full interface.
13
+ set -euo pipefail
14
+ gem_dir="$(cd "$(dirname "$0")/.." && pwd)"
15
+ exec "$(dirname "$gem_dir")/bin/test" --gem "$(basename "$gem_dir")" "$@"
@@ -0,0 +1,326 @@
1
+ GIT
2
+ remote: https://github.com/ruby/debug.git
3
+ revision: 6510cfbc7496c55ebbefa437a25c17ca58f7c5eb
4
+ specs:
5
+ debug (1.11.1)
6
+ irb (~> 1.10)
7
+ reline (>= 0.3.8)
8
+
9
+ PATH
10
+ remote: ../../sentry-rails
11
+ specs:
12
+ sentry-rails (6.6.2)
13
+ railties (>= 5.2.0)
14
+ sentry-ruby (~> 6.6.2)
15
+
16
+ PATH
17
+ remote: ../../sentry-ruby
18
+ specs:
19
+ sentry-ruby (6.6.2)
20
+ bigdecimal
21
+ concurrent-ruby (~> 1.0, >= 1.0.2)
22
+ logger
23
+
24
+ PATH
25
+ remote: ..
26
+ specs:
27
+ sentry-resque (6.6.2)
28
+ resque (>= 1.24)
29
+ sentry-ruby (~> 6.6.2)
30
+
31
+ GEM
32
+ remote: https://rubygems.org/
33
+ specs:
34
+ actioncable (7.1.6)
35
+ actionpack (= 7.1.6)
36
+ activesupport (= 7.1.6)
37
+ nio4r (~> 2.0)
38
+ websocket-driver (>= 0.6.1)
39
+ zeitwerk (~> 2.6)
40
+ actionmailbox (7.1.6)
41
+ actionpack (= 7.1.6)
42
+ activejob (= 7.1.6)
43
+ activerecord (= 7.1.6)
44
+ activestorage (= 7.1.6)
45
+ activesupport (= 7.1.6)
46
+ mail (>= 2.7.1)
47
+ net-imap
48
+ net-pop
49
+ net-smtp
50
+ actionmailer (7.1.6)
51
+ actionpack (= 7.1.6)
52
+ actionview (= 7.1.6)
53
+ activejob (= 7.1.6)
54
+ activesupport (= 7.1.6)
55
+ mail (~> 2.5, >= 2.5.4)
56
+ net-imap
57
+ net-pop
58
+ net-smtp
59
+ rails-dom-testing (~> 2.2)
60
+ actionpack (7.1.6)
61
+ actionview (= 7.1.6)
62
+ activesupport (= 7.1.6)
63
+ cgi
64
+ nokogiri (>= 1.8.5)
65
+ racc
66
+ rack (>= 2.2.4)
67
+ rack-session (>= 1.0.1)
68
+ rack-test (>= 0.6.3)
69
+ rails-dom-testing (~> 2.2)
70
+ rails-html-sanitizer (~> 1.6)
71
+ actiontext (7.1.6)
72
+ actionpack (= 7.1.6)
73
+ activerecord (= 7.1.6)
74
+ activestorage (= 7.1.6)
75
+ activesupport (= 7.1.6)
76
+ globalid (>= 0.6.0)
77
+ nokogiri (>= 1.8.5)
78
+ actionview (7.1.6)
79
+ activesupport (= 7.1.6)
80
+ builder (~> 3.1)
81
+ cgi
82
+ erubi (~> 1.11)
83
+ rails-dom-testing (~> 2.2)
84
+ rails-html-sanitizer (~> 1.6)
85
+ activejob (7.1.6)
86
+ activesupport (= 7.1.6)
87
+ globalid (>= 0.3.6)
88
+ activemodel (7.1.6)
89
+ activesupport (= 7.1.6)
90
+ activerecord (7.1.6)
91
+ activemodel (= 7.1.6)
92
+ activesupport (= 7.1.6)
93
+ timeout (>= 0.4.0)
94
+ activestorage (7.1.6)
95
+ actionpack (= 7.1.6)
96
+ activejob (= 7.1.6)
97
+ activerecord (= 7.1.6)
98
+ activesupport (= 7.1.6)
99
+ marcel (~> 1.0)
100
+ activesupport (7.1.6)
101
+ base64
102
+ benchmark (>= 0.3)
103
+ bigdecimal
104
+ concurrent-ruby (~> 1.0, >= 1.0.2)
105
+ connection_pool (>= 2.2.5)
106
+ drb
107
+ i18n (>= 1.6, < 2)
108
+ logger (>= 1.4.2)
109
+ minitest (>= 5.1)
110
+ mutex_m
111
+ securerandom (>= 0.3)
112
+ tzinfo (~> 2.0)
113
+ base64 (0.3.0)
114
+ benchmark (0.5.0)
115
+ bigdecimal (4.1.2)
116
+ builder (3.3.0)
117
+ cgi (0.5.2)
118
+ concurrent-ruby (1.3.8)
119
+ connection_pool (2.5.5)
120
+ crass (1.0.7)
121
+ date (3.5.1)
122
+ diff-lcs (1.6.2)
123
+ docile (1.4.1)
124
+ drb (2.2.3)
125
+ erb (4.0.4.1)
126
+ cgi (>= 0.3.3)
127
+ erubi (1.13.1)
128
+ et-orbi (1.4.1)
129
+ tzinfo
130
+ fugit (1.13.0)
131
+ et-orbi (~> 1.4)
132
+ raabro (~> 1.4)
133
+ globalid (1.4.0)
134
+ activesupport (>= 6.1)
135
+ i18n (1.14.8)
136
+ concurrent-ruby (~> 1.0)
137
+ io-console (0.8.2)
138
+ irb (1.18.0)
139
+ pp (>= 0.6.0)
140
+ prism (>= 1.3.0)
141
+ rdoc (>= 4.0.0)
142
+ reline (>= 0.4.2)
143
+ logger (1.7.0)
144
+ loofah (2.25.2)
145
+ crass (~> 1.0.2)
146
+ nokogiri (>= 1.12.0)
147
+ mail (2.9.1)
148
+ logger
149
+ mini_mime (>= 0.1.1)
150
+ net-imap
151
+ net-pop
152
+ net-smtp
153
+ marcel (1.2.1)
154
+ mini_mime (1.1.5)
155
+ mini_portile2 (2.8.9)
156
+ minitest (5.26.1)
157
+ mono_logger (1.1.2)
158
+ multi_json (1.15.0)
159
+ mustermann (3.1.1)
160
+ mutex_m (0.3.0)
161
+ net-imap (0.4.25)
162
+ date
163
+ net-protocol
164
+ net-pop (0.1.2)
165
+ net-protocol
166
+ net-protocol (0.2.2)
167
+ timeout
168
+ net-smtp (0.5.1)
169
+ net-protocol
170
+ nio4r (2.7.5)
171
+ nokogiri (1.15.7)
172
+ mini_portile2 (~> 2.8.2)
173
+ racc (~> 1.4)
174
+ nokogiri (1.15.7-aarch64-linux)
175
+ racc (~> 1.4)
176
+ nokogiri (1.15.7-x86_64-linux)
177
+ racc (~> 1.4)
178
+ pp (0.6.4)
179
+ prettyprint
180
+ prettyprint (0.2.0)
181
+ prism (1.9.0)
182
+ psych (5.4.0)
183
+ date
184
+ stringio
185
+ raabro (1.5.0)
186
+ racc (1.8.1)
187
+ rack (3.2.6)
188
+ rack-protection (4.2.1)
189
+ base64 (>= 0.1.0)
190
+ logger (>= 1.6.0)
191
+ rack (>= 3.0.0, < 4)
192
+ rack-session (2.1.2)
193
+ base64 (>= 0.1.0)
194
+ rack (>= 3.0.0)
195
+ rack-test (2.2.0)
196
+ rack (>= 1.3)
197
+ rackup (2.3.1)
198
+ rack (>= 3)
199
+ rails (7.1.6)
200
+ actioncable (= 7.1.6)
201
+ actionmailbox (= 7.1.6)
202
+ actionmailer (= 7.1.6)
203
+ actionpack (= 7.1.6)
204
+ actiontext (= 7.1.6)
205
+ actionview (= 7.1.6)
206
+ activejob (= 7.1.6)
207
+ activemodel (= 7.1.6)
208
+ activerecord (= 7.1.6)
209
+ activestorage (= 7.1.6)
210
+ activesupport (= 7.1.6)
211
+ bundler (>= 1.15.0)
212
+ railties (= 7.1.6)
213
+ rails-dom-testing (2.3.0)
214
+ activesupport (>= 5.0.0)
215
+ minitest
216
+ nokogiri (>= 1.6)
217
+ rails-html-sanitizer (1.7.1)
218
+ loofah (~> 2.25, >= 2.25.2)
219
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
220
+ railties (7.1.6)
221
+ actionpack (= 7.1.6)
222
+ activesupport (= 7.1.6)
223
+ cgi
224
+ irb
225
+ rackup (>= 1.0.0)
226
+ rake (>= 12.2)
227
+ thor (~> 1.0, >= 1.2.2)
228
+ tsort (>= 0.2)
229
+ zeitwerk (~> 2.6)
230
+ rake (12.3.3)
231
+ rdoc (7.2.0)
232
+ erb
233
+ psych (>= 4.0.0)
234
+ tsort
235
+ redis (5.4.1)
236
+ redis-client (>= 0.22.0)
237
+ redis-client (0.30.1)
238
+ connection_pool
239
+ redis-namespace (1.11.0)
240
+ redis (>= 4)
241
+ reline (0.6.3)
242
+ io-console (~> 0.5)
243
+ resque (2.7.0)
244
+ mono_logger (~> 1)
245
+ multi_json (~> 1.0)
246
+ redis-namespace (~> 1.6)
247
+ sinatra (>= 0.9.2)
248
+ resque-retry (1.8.1)
249
+ resque (>= 1.25, < 3.0)
250
+ resque-scheduler (>= 4.0, < 6.0)
251
+ resque-scheduler (4.11.0)
252
+ mono_logger (~> 1.0)
253
+ redis (>= 3.3)
254
+ resque (>= 1.27)
255
+ rufus-scheduler (~> 3.2, != 3.3)
256
+ rexml (3.4.1)
257
+ rspec (3.13.2)
258
+ rspec-core (~> 3.13.0)
259
+ rspec-expectations (~> 3.13.0)
260
+ rspec-mocks (~> 3.13.0)
261
+ rspec-core (3.13.6)
262
+ rspec-support (~> 3.13.0)
263
+ rspec-expectations (3.13.5)
264
+ diff-lcs (>= 1.2.0, < 2.0)
265
+ rspec-support (~> 3.13.0)
266
+ rspec-mocks (3.13.8)
267
+ diff-lcs (>= 1.2.0, < 2.0)
268
+ rspec-support (~> 3.13.0)
269
+ rspec-retry (0.6.2)
270
+ rspec-core (> 3.3)
271
+ rspec-support (3.13.7)
272
+ rufus-scheduler (3.9.2)
273
+ fugit (~> 1.1, >= 1.11.1)
274
+ securerandom (0.3.2)
275
+ simplecov (0.22.0)
276
+ docile (~> 1.1)
277
+ simplecov-html (~> 0.11)
278
+ simplecov_json_formatter (~> 0.1)
279
+ simplecov-cobertura (3.2.0)
280
+ rexml
281
+ simplecov (~> 0.19)
282
+ simplecov-html (0.13.2)
283
+ simplecov_json_formatter (0.1.4)
284
+ sinatra (4.2.1)
285
+ logger (>= 1.6.0)
286
+ mustermann (~> 3.0)
287
+ rack (>= 3.0.0, < 4)
288
+ rack-protection (= 4.2.1)
289
+ rack-session (>= 2.0.0, < 3)
290
+ tilt (~> 2.0)
291
+ stringio (3.2.0)
292
+ thor (1.5.0)
293
+ tilt (2.8.0)
294
+ timeout (0.6.1)
295
+ tsort (0.2.0)
296
+ tzinfo (2.0.6)
297
+ concurrent-ruby (~> 1.0)
298
+ websocket-driver (0.8.2)
299
+ base64
300
+ websocket-extensions (>= 0.1.0)
301
+ websocket-extensions (0.1.5)
302
+ zeitwerk (2.6.18)
303
+
304
+ PLATFORMS
305
+ aarch64-linux
306
+ ruby
307
+ x86_64-linux
308
+
309
+ DEPENDENCIES
310
+ cgi
311
+ debug!
312
+ irb
313
+ rails (> 5.2.0)
314
+ rake (~> 12.0)
315
+ resque-retry (~> 1.8)
316
+ rexml (= 3.4.1)
317
+ rspec
318
+ rspec-retry
319
+ sentry-rails!
320
+ sentry-resque!
321
+ sentry-ruby!
322
+ simplecov
323
+ simplecov-cobertura (~> 3.0)
324
+
325
+ BUNDLED WITH
326
+ 2.4.22
@@ -0,0 +1,343 @@
1
+ GIT
2
+ remote: https://github.com/ruby/debug.git
3
+ revision: 6510cfbc7496c55ebbefa437a25c17ca58f7c5eb
4
+ specs:
5
+ debug (1.11.1)
6
+ irb (~> 1.10)
7
+ reline (>= 0.3.8)
8
+
9
+ PATH
10
+ remote: ../../sentry-rails
11
+ specs:
12
+ sentry-rails (6.6.2)
13
+ railties (>= 5.2.0)
14
+ sentry-ruby (~> 6.6.2)
15
+
16
+ PATH
17
+ remote: ../../sentry-ruby
18
+ specs:
19
+ sentry-ruby (6.6.2)
20
+ bigdecimal
21
+ concurrent-ruby (~> 1.0, >= 1.0.2)
22
+ logger
23
+
24
+ PATH
25
+ remote: ..
26
+ specs:
27
+ sentry-resque (6.6.2)
28
+ resque (>= 1.24)
29
+ sentry-ruby (~> 6.6.2)
30
+
31
+ GEM
32
+ remote: https://rubygems.org/
33
+ specs:
34
+ actioncable (7.1.6)
35
+ actionpack (= 7.1.6)
36
+ activesupport (= 7.1.6)
37
+ nio4r (~> 2.0)
38
+ websocket-driver (>= 0.6.1)
39
+ zeitwerk (~> 2.6)
40
+ actionmailbox (7.1.6)
41
+ actionpack (= 7.1.6)
42
+ activejob (= 7.1.6)
43
+ activerecord (= 7.1.6)
44
+ activestorage (= 7.1.6)
45
+ activesupport (= 7.1.6)
46
+ mail (>= 2.7.1)
47
+ net-imap
48
+ net-pop
49
+ net-smtp
50
+ actionmailer (7.1.6)
51
+ actionpack (= 7.1.6)
52
+ actionview (= 7.1.6)
53
+ activejob (= 7.1.6)
54
+ activesupport (= 7.1.6)
55
+ mail (~> 2.5, >= 2.5.4)
56
+ net-imap
57
+ net-pop
58
+ net-smtp
59
+ rails-dom-testing (~> 2.2)
60
+ actionpack (7.1.6)
61
+ actionview (= 7.1.6)
62
+ activesupport (= 7.1.6)
63
+ cgi
64
+ nokogiri (>= 1.8.5)
65
+ racc
66
+ rack (>= 2.2.4)
67
+ rack-session (>= 1.0.1)
68
+ rack-test (>= 0.6.3)
69
+ rails-dom-testing (~> 2.2)
70
+ rails-html-sanitizer (~> 1.6)
71
+ actiontext (7.1.6)
72
+ actionpack (= 7.1.6)
73
+ activerecord (= 7.1.6)
74
+ activestorage (= 7.1.6)
75
+ activesupport (= 7.1.6)
76
+ globalid (>= 0.6.0)
77
+ nokogiri (>= 1.8.5)
78
+ actionview (7.1.6)
79
+ activesupport (= 7.1.6)
80
+ builder (~> 3.1)
81
+ cgi
82
+ erubi (~> 1.11)
83
+ rails-dom-testing (~> 2.2)
84
+ rails-html-sanitizer (~> 1.6)
85
+ activejob (7.1.6)
86
+ activesupport (= 7.1.6)
87
+ globalid (>= 0.3.6)
88
+ activemodel (7.1.6)
89
+ activesupport (= 7.1.6)
90
+ activerecord (7.1.6)
91
+ activemodel (= 7.1.6)
92
+ activesupport (= 7.1.6)
93
+ timeout (>= 0.4.0)
94
+ activestorage (7.1.6)
95
+ actionpack (= 7.1.6)
96
+ activejob (= 7.1.6)
97
+ activerecord (= 7.1.6)
98
+ activesupport (= 7.1.6)
99
+ marcel (~> 1.0)
100
+ activesupport (7.1.6)
101
+ base64
102
+ benchmark (>= 0.3)
103
+ bigdecimal
104
+ concurrent-ruby (~> 1.0, >= 1.0.2)
105
+ connection_pool (>= 2.2.5)
106
+ drb
107
+ i18n (>= 1.6, < 2)
108
+ logger (>= 1.4.2)
109
+ minitest (>= 5.1)
110
+ mutex_m
111
+ securerandom (>= 0.3)
112
+ tzinfo (~> 2.0)
113
+ base64 (0.3.0)
114
+ benchmark (0.5.0)
115
+ bigdecimal (4.1.2)
116
+ builder (3.3.0)
117
+ cgi (0.5.2)
118
+ concurrent-ruby (1.3.8)
119
+ connection_pool (2.5.5)
120
+ crass (1.0.7)
121
+ date (3.5.1)
122
+ diff-lcs (1.6.2)
123
+ docile (1.4.1)
124
+ drb (2.2.3)
125
+ erb (4.0.4.1)
126
+ cgi (>= 0.3.3)
127
+ erubi (1.13.1)
128
+ et-orbi (1.4.1)
129
+ tzinfo
130
+ fugit (1.13.0)
131
+ et-orbi (~> 1.4)
132
+ raabro (~> 1.4)
133
+ globalid (1.4.0)
134
+ activesupport (>= 6.1)
135
+ i18n (1.14.8)
136
+ concurrent-ruby (~> 1.0)
137
+ io-console (0.8.2)
138
+ irb (1.18.0)
139
+ pp (>= 0.6.0)
140
+ prism (>= 1.3.0)
141
+ rdoc (>= 4.0.0)
142
+ reline (>= 0.4.2)
143
+ language_server-protocol (3.17.0.6)
144
+ logger (1.7.0)
145
+ loofah (2.25.2)
146
+ crass (~> 1.0.2)
147
+ nokogiri (>= 1.12.0)
148
+ mail (2.9.1)
149
+ logger
150
+ mini_mime (>= 0.1.1)
151
+ net-imap
152
+ net-pop
153
+ net-smtp
154
+ marcel (1.2.1)
155
+ mini_mime (1.1.5)
156
+ minitest (5.26.1)
157
+ mono_logger (1.1.2)
158
+ multi_json (1.19.1)
159
+ mustermann (3.1.1)
160
+ mutex_m (0.3.0)
161
+ net-imap (0.4.25)
162
+ date
163
+ net-protocol
164
+ net-pop (0.1.2)
165
+ net-protocol
166
+ net-protocol (0.2.2)
167
+ timeout
168
+ net-smtp (0.5.1)
169
+ net-protocol
170
+ nio4r (2.7.5)
171
+ nokogiri (1.17.2-aarch64-linux)
172
+ racc (~> 1.4)
173
+ nokogiri (1.17.2-arm-linux)
174
+ racc (~> 1.4)
175
+ nokogiri (1.17.2-arm64-darwin)
176
+ racc (~> 1.4)
177
+ nokogiri (1.17.2-x86-linux)
178
+ racc (~> 1.4)
179
+ nokogiri (1.17.2-x86_64-darwin)
180
+ racc (~> 1.4)
181
+ nokogiri (1.17.2-x86_64-linux)
182
+ racc (~> 1.4)
183
+ pp (0.6.4)
184
+ prettyprint
185
+ prettyprint (0.2.0)
186
+ prism (1.9.0)
187
+ psych (5.4.0)
188
+ date
189
+ stringio
190
+ raabro (1.5.0)
191
+ racc (1.8.1)
192
+ rack (3.2.6)
193
+ rack-protection (4.2.1)
194
+ base64 (>= 0.1.0)
195
+ logger (>= 1.6.0)
196
+ rack (>= 3.0.0, < 4)
197
+ rack-session (2.1.2)
198
+ base64 (>= 0.1.0)
199
+ rack (>= 3.0.0)
200
+ rack-test (2.2.0)
201
+ rack (>= 1.3)
202
+ rackup (2.3.1)
203
+ rack (>= 3)
204
+ rails (7.1.6)
205
+ actioncable (= 7.1.6)
206
+ actionmailbox (= 7.1.6)
207
+ actionmailer (= 7.1.6)
208
+ actionpack (= 7.1.6)
209
+ actiontext (= 7.1.6)
210
+ actionview (= 7.1.6)
211
+ activejob (= 7.1.6)
212
+ activemodel (= 7.1.6)
213
+ activerecord (= 7.1.6)
214
+ activestorage (= 7.1.6)
215
+ activesupport (= 7.1.6)
216
+ bundler (>= 1.15.0)
217
+ railties (= 7.1.6)
218
+ rails-dom-testing (2.3.0)
219
+ activesupport (>= 5.0.0)
220
+ minitest
221
+ nokogiri (>= 1.6)
222
+ rails-html-sanitizer (1.7.1)
223
+ loofah (~> 2.25, >= 2.25.2)
224
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
225
+ railties (7.1.6)
226
+ actionpack (= 7.1.6)
227
+ activesupport (= 7.1.6)
228
+ cgi
229
+ irb
230
+ rackup (>= 1.0.0)
231
+ rake (>= 12.2)
232
+ thor (~> 1.0, >= 1.2.2)
233
+ tsort (>= 0.2)
234
+ zeitwerk (~> 2.6)
235
+ rake (12.3.3)
236
+ rbs (3.6.1)
237
+ logger
238
+ rdoc (7.2.0)
239
+ erb
240
+ psych (>= 4.0.0)
241
+ tsort
242
+ redis (5.4.1)
243
+ redis-client (>= 0.22.0)
244
+ redis-client (0.30.1)
245
+ connection_pool
246
+ redis-namespace (1.11.0)
247
+ redis (>= 4)
248
+ reline (0.6.3)
249
+ io-console (~> 0.5)
250
+ resque (2.7.0)
251
+ mono_logger (~> 1)
252
+ multi_json (~> 1.0)
253
+ redis-namespace (~> 1.6)
254
+ sinatra (>= 0.9.2)
255
+ resque-retry (1.8.1)
256
+ resque (>= 1.25, < 3.0)
257
+ resque-scheduler (>= 4.0, < 6.0)
258
+ resque-scheduler (4.11.0)
259
+ mono_logger (~> 1.0)
260
+ redis (>= 3.3)
261
+ resque (>= 1.27)
262
+ rufus-scheduler (~> 3.2, != 3.3)
263
+ rexml (3.4.1)
264
+ rspec (3.13.2)
265
+ rspec-core (~> 3.13.0)
266
+ rspec-expectations (~> 3.13.0)
267
+ rspec-mocks (~> 3.13.0)
268
+ rspec-core (3.13.6)
269
+ rspec-support (~> 3.13.0)
270
+ rspec-expectations (3.13.5)
271
+ diff-lcs (>= 1.2.0, < 2.0)
272
+ rspec-support (~> 3.13.0)
273
+ rspec-mocks (3.13.8)
274
+ diff-lcs (>= 1.2.0, < 2.0)
275
+ rspec-support (~> 3.13.0)
276
+ rspec-retry (0.6.2)
277
+ rspec-core (> 3.3)
278
+ rspec-support (3.13.7)
279
+ ruby-lsp (0.26.10)
280
+ language_server-protocol (~> 3.17.0)
281
+ prism (>= 1.2, < 2.0)
282
+ rbs (>= 3, < 5)
283
+ ruby-lsp-rspec (0.1.29)
284
+ ruby-lsp (~> 0.26.0)
285
+ rufus-scheduler (3.9.2)
286
+ fugit (~> 1.1, >= 1.11.1)
287
+ securerandom (0.3.2)
288
+ simplecov (0.22.0)
289
+ docile (~> 1.1)
290
+ simplecov-html (~> 0.11)
291
+ simplecov_json_formatter (~> 0.1)
292
+ simplecov-cobertura (3.2.0)
293
+ rexml
294
+ simplecov (~> 0.19)
295
+ simplecov-html (0.13.2)
296
+ simplecov_json_formatter (0.1.4)
297
+ sinatra (4.2.1)
298
+ logger (>= 1.6.0)
299
+ mustermann (~> 3.0)
300
+ rack (>= 3.0.0, < 4)
301
+ rack-protection (= 4.2.1)
302
+ rack-session (>= 2.0.0, < 3)
303
+ tilt (~> 2.0)
304
+ stringio (3.2.0)
305
+ thor (1.5.0)
306
+ tilt (2.8.0)
307
+ timeout (0.6.1)
308
+ tsort (0.2.0)
309
+ tzinfo (2.0.6)
310
+ concurrent-ruby (~> 1.0)
311
+ websocket-driver (0.8.2)
312
+ base64
313
+ websocket-extensions (>= 0.1.0)
314
+ websocket-extensions (0.1.5)
315
+ zeitwerk (2.6.18)
316
+
317
+ PLATFORMS
318
+ aarch64-linux
319
+ arm-linux
320
+ arm64-darwin
321
+ x86-linux
322
+ x86_64-darwin
323
+ x86_64-linux
324
+
325
+ DEPENDENCIES
326
+ cgi
327
+ debug!
328
+ irb
329
+ rails (> 5.2.0)
330
+ rake (~> 12.0)
331
+ resque-retry (~> 1.8)
332
+ rexml (= 3.4.1)
333
+ rspec
334
+ rspec-retry
335
+ ruby-lsp-rspec
336
+ sentry-rails!
337
+ sentry-resque!
338
+ sentry-ruby!
339
+ simplecov
340
+ simplecov-cobertura (~> 3.0)
341
+
342
+ BUNDLED WITH
343
+ 2.5.23