sentry-sidekiq 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 +4 -4
- data/README.md +1 -1
- data/bin/test +15 -0
- data/gemfiles/ruby-2.7_sidekiq-5.0.gemfile.lock +296 -0
- data/gemfiles/ruby-2.7_sidekiq-6.5.gemfile.lock +316 -0
- data/gemfiles/ruby-2.7_sidekiq-7.0.gemfile.lock +318 -0
- data/gemfiles/ruby-3.0_sidekiq-5.0.gemfile.lock +313 -0
- data/gemfiles/ruby-3.0_sidekiq-6.5.gemfile.lock +333 -0
- data/gemfiles/ruby-3.0_sidekiq-7.0.gemfile.lock +335 -0
- data/gemfiles/ruby-3.1_sidekiq-5.0.gemfile.lock +413 -0
- data/gemfiles/ruby-3.1_sidekiq-6.5.gemfile.lock +442 -0
- data/gemfiles/ruby-3.1_sidekiq-7.0.gemfile.lock +443 -0
- data/gemfiles/ruby-3.2_sidekiq-5.0.gemfile.lock +417 -0
- data/gemfiles/ruby-3.2_sidekiq-6.5.gemfile.lock +446 -0
- data/gemfiles/ruby-3.2_sidekiq-7.0.gemfile.lock +447 -0
- data/gemfiles/ruby-3.2_sidekiq-8.0.0.gemfile.lock +444 -0
- data/gemfiles/ruby-3.3_sidekiq-5.0.gemfile.lock +417 -0
- data/gemfiles/ruby-3.3_sidekiq-6.5.gemfile.lock +446 -0
- data/gemfiles/ruby-3.3_sidekiq-7.0.gemfile.lock +447 -0
- data/gemfiles/ruby-3.3_sidekiq-8.0.0.gemfile.lock +444 -0
- data/gemfiles/ruby-3.4_sidekiq-5.0.gemfile.lock +428 -0
- data/gemfiles/ruby-3.4_sidekiq-6.5.gemfile.lock +457 -0
- data/gemfiles/ruby-3.4_sidekiq-7.0.gemfile.lock +458 -0
- data/gemfiles/ruby-3.4_sidekiq-8.0.0.gemfile.lock +455 -0
- data/gemfiles/ruby-4.0_sidekiq-5.0.gemfile.lock +428 -0
- data/gemfiles/ruby-4.0_sidekiq-6.5.gemfile.lock +457 -0
- data/gemfiles/ruby-4.0_sidekiq-7.0.gemfile.lock +458 -0
- data/gemfiles/ruby-jruby-9.4.14.0_sidekiq-5.0.gemfile.lock +367 -0
- data/gemfiles/ruby-jruby-9.4.14.0_sidekiq-6.5.gemfile.lock +396 -0
- data/gemfiles/ruby-jruby-9.4.14.0_sidekiq-6.gemfile.lock +396 -0
- data/gemfiles/ruby-jruby-9.4.14.0_sidekiq-7.0.gemfile.lock +397 -0
- data/lib/sentry/sidekiq/version.rb +1 -1
- data/sentry-sidekiq.gemspec +2 -2
- metadata +37 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd38351491a4d6b01cfbc7ce9b19bfb4255990419b6df9a99ebf7574c6d2e261
|
|
4
|
+
data.tar.gz: 2c5a1206ecbaa14c044157d74a40dc7a2f985450bfda15f0e25193e08ae2a52e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d0ce7cadc9fc1c286059933ff756893da764d86b0af6810c39d0ace3dab3f4133746e77126e8039128b3adf7fd017ac4b7a7b184e3e37d676e1770c541ff865
|
|
7
|
+
data.tar.gz: ea1fcfaf8a9e038e4c561c767bc24ff3527d929d98d0a14d82be8d61056f61bc2ebaf48fd37b8d953df9718ea1178b5c7fc861444baab8c22c239a13672b568b
|
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
[](https://rubygems.org/gems/sentry-sidekiq)
|
|
14
|
-

|
|
15
15
|
[](https://codecov.io/gh/getsentry/sentry-ruby/branch/master)
|
|
16
16
|
[](https://rubygems.org/gems/sentry-sidekiq/)
|
|
17
17
|
[](https://dependabot.com/compatibility-score.html?dependency-name=sentry-sidekiq&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,296 @@
|
|
|
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-sidekiq (6.6.2)
|
|
28
|
+
sentry-ruby (~> 6.6.2)
|
|
29
|
+
sidekiq (>= 5.0)
|
|
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
|
+
globalid (1.4.0)
|
|
129
|
+
activesupport (>= 6.1)
|
|
130
|
+
i18n (1.14.8)
|
|
131
|
+
concurrent-ruby (~> 1.0)
|
|
132
|
+
io-console (0.8.2)
|
|
133
|
+
irb (1.18.0)
|
|
134
|
+
pp (>= 0.6.0)
|
|
135
|
+
prism (>= 1.3.0)
|
|
136
|
+
rdoc (>= 4.0.0)
|
|
137
|
+
reline (>= 0.4.2)
|
|
138
|
+
logger (1.7.0)
|
|
139
|
+
loofah (2.25.2)
|
|
140
|
+
crass (~> 1.0.2)
|
|
141
|
+
nokogiri (>= 1.12.0)
|
|
142
|
+
mail (2.9.1)
|
|
143
|
+
logger
|
|
144
|
+
mini_mime (>= 0.1.1)
|
|
145
|
+
net-imap
|
|
146
|
+
net-pop
|
|
147
|
+
net-smtp
|
|
148
|
+
marcel (1.2.1)
|
|
149
|
+
mini_mime (1.1.5)
|
|
150
|
+
mini_portile2 (2.8.9)
|
|
151
|
+
minitest (5.26.1)
|
|
152
|
+
mutex_m (0.3.0)
|
|
153
|
+
net-imap (0.4.25)
|
|
154
|
+
date
|
|
155
|
+
net-protocol
|
|
156
|
+
net-pop (0.1.2)
|
|
157
|
+
net-protocol
|
|
158
|
+
net-protocol (0.2.2)
|
|
159
|
+
timeout
|
|
160
|
+
net-smtp (0.5.1)
|
|
161
|
+
net-protocol
|
|
162
|
+
nio4r (2.7.5)
|
|
163
|
+
nokogiri (1.15.7)
|
|
164
|
+
mini_portile2 (~> 2.8.2)
|
|
165
|
+
racc (~> 1.4)
|
|
166
|
+
nokogiri (1.15.7-aarch64-linux)
|
|
167
|
+
racc (~> 1.4)
|
|
168
|
+
nokogiri (1.15.7-x86_64-linux)
|
|
169
|
+
racc (~> 1.4)
|
|
170
|
+
pp (0.6.4)
|
|
171
|
+
prettyprint
|
|
172
|
+
prettyprint (0.2.0)
|
|
173
|
+
prism (1.9.0)
|
|
174
|
+
psych (5.4.0)
|
|
175
|
+
date
|
|
176
|
+
stringio
|
|
177
|
+
racc (1.8.1)
|
|
178
|
+
rack (2.2.23)
|
|
179
|
+
rack-protection (3.2.0)
|
|
180
|
+
base64 (>= 0.1.0)
|
|
181
|
+
rack (~> 2.2, >= 2.2.4)
|
|
182
|
+
rack-session (1.0.2)
|
|
183
|
+
rack (< 3)
|
|
184
|
+
rack-test (2.2.0)
|
|
185
|
+
rack (>= 1.3)
|
|
186
|
+
rackup (1.0.1)
|
|
187
|
+
rack (< 3)
|
|
188
|
+
webrick
|
|
189
|
+
rails (7.1.6)
|
|
190
|
+
actioncable (= 7.1.6)
|
|
191
|
+
actionmailbox (= 7.1.6)
|
|
192
|
+
actionmailer (= 7.1.6)
|
|
193
|
+
actionpack (= 7.1.6)
|
|
194
|
+
actiontext (= 7.1.6)
|
|
195
|
+
actionview (= 7.1.6)
|
|
196
|
+
activejob (= 7.1.6)
|
|
197
|
+
activemodel (= 7.1.6)
|
|
198
|
+
activerecord (= 7.1.6)
|
|
199
|
+
activestorage (= 7.1.6)
|
|
200
|
+
activesupport (= 7.1.6)
|
|
201
|
+
bundler (>= 1.15.0)
|
|
202
|
+
railties (= 7.1.6)
|
|
203
|
+
rails-dom-testing (2.3.0)
|
|
204
|
+
activesupport (>= 5.0.0)
|
|
205
|
+
minitest
|
|
206
|
+
nokogiri (>= 1.6)
|
|
207
|
+
rails-html-sanitizer (1.7.1)
|
|
208
|
+
loofah (~> 2.25, >= 2.25.2)
|
|
209
|
+
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)
|
|
210
|
+
railties (7.1.6)
|
|
211
|
+
actionpack (= 7.1.6)
|
|
212
|
+
activesupport (= 7.1.6)
|
|
213
|
+
cgi
|
|
214
|
+
irb
|
|
215
|
+
rackup (>= 1.0.0)
|
|
216
|
+
rake (>= 12.2)
|
|
217
|
+
thor (~> 1.0, >= 1.2.2)
|
|
218
|
+
tsort (>= 0.2)
|
|
219
|
+
zeitwerk (~> 2.6)
|
|
220
|
+
rake (12.3.3)
|
|
221
|
+
rdoc (7.2.0)
|
|
222
|
+
erb
|
|
223
|
+
psych (>= 4.0.0)
|
|
224
|
+
tsort
|
|
225
|
+
redis (4.5.1)
|
|
226
|
+
reline (0.6.3)
|
|
227
|
+
io-console (~> 0.5)
|
|
228
|
+
rexml (3.4.1)
|
|
229
|
+
rspec (3.13.2)
|
|
230
|
+
rspec-core (~> 3.13.0)
|
|
231
|
+
rspec-expectations (~> 3.13.0)
|
|
232
|
+
rspec-mocks (~> 3.13.0)
|
|
233
|
+
rspec-core (3.13.6)
|
|
234
|
+
rspec-support (~> 3.13.0)
|
|
235
|
+
rspec-expectations (3.13.5)
|
|
236
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
237
|
+
rspec-support (~> 3.13.0)
|
|
238
|
+
rspec-mocks (3.13.8)
|
|
239
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
240
|
+
rspec-support (~> 3.13.0)
|
|
241
|
+
rspec-retry (0.6.2)
|
|
242
|
+
rspec-core (> 3.3)
|
|
243
|
+
rspec-support (3.13.7)
|
|
244
|
+
securerandom (0.3.2)
|
|
245
|
+
sidekiq (5.2.10)
|
|
246
|
+
connection_pool (~> 2.2, >= 2.2.2)
|
|
247
|
+
rack (~> 2.0)
|
|
248
|
+
rack-protection (>= 1.5.0)
|
|
249
|
+
redis (~> 4.5, < 4.6.0)
|
|
250
|
+
simplecov (0.22.0)
|
|
251
|
+
docile (~> 1.1)
|
|
252
|
+
simplecov-html (~> 0.11)
|
|
253
|
+
simplecov_json_formatter (~> 0.1)
|
|
254
|
+
simplecov-cobertura (3.2.0)
|
|
255
|
+
rexml
|
|
256
|
+
simplecov (~> 0.19)
|
|
257
|
+
simplecov-html (0.13.2)
|
|
258
|
+
simplecov_json_formatter (0.1.4)
|
|
259
|
+
stringio (3.2.0)
|
|
260
|
+
thor (1.5.0)
|
|
261
|
+
timecop (0.9.11)
|
|
262
|
+
timeout (0.6.1)
|
|
263
|
+
tsort (0.2.0)
|
|
264
|
+
tzinfo (2.0.6)
|
|
265
|
+
concurrent-ruby (~> 1.0)
|
|
266
|
+
webrick (1.9.2)
|
|
267
|
+
websocket-driver (0.8.2)
|
|
268
|
+
base64
|
|
269
|
+
websocket-extensions (>= 0.1.0)
|
|
270
|
+
websocket-extensions (0.1.5)
|
|
271
|
+
zeitwerk (2.6.18)
|
|
272
|
+
|
|
273
|
+
PLATFORMS
|
|
274
|
+
aarch64-linux
|
|
275
|
+
ruby
|
|
276
|
+
x86_64-linux
|
|
277
|
+
|
|
278
|
+
DEPENDENCIES
|
|
279
|
+
cgi
|
|
280
|
+
debug!
|
|
281
|
+
irb
|
|
282
|
+
rails (> 5.2.0)
|
|
283
|
+
rake (~> 12.0)
|
|
284
|
+
rexml (= 3.4.1)
|
|
285
|
+
rspec
|
|
286
|
+
rspec-retry
|
|
287
|
+
sentry-rails!
|
|
288
|
+
sentry-ruby!
|
|
289
|
+
sentry-sidekiq!
|
|
290
|
+
sidekiq (~> 5.0)
|
|
291
|
+
simplecov
|
|
292
|
+
simplecov-cobertura (~> 3.0)
|
|
293
|
+
timecop
|
|
294
|
+
|
|
295
|
+
BUNDLED WITH
|
|
296
|
+
2.4.22
|
|
@@ -0,0 +1,316 @@
|
|
|
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-sidekiq (6.6.2)
|
|
28
|
+
sentry-ruby (~> 6.6.2)
|
|
29
|
+
sidekiq (>= 5.0)
|
|
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
|
+
cronex (0.15.0)
|
|
122
|
+
tzinfo
|
|
123
|
+
unicode (>= 0.4.4.5)
|
|
124
|
+
date (3.5.1)
|
|
125
|
+
diff-lcs (1.6.2)
|
|
126
|
+
docile (1.4.1)
|
|
127
|
+
drb (2.2.3)
|
|
128
|
+
erb (4.0.4.1)
|
|
129
|
+
cgi (>= 0.3.3)
|
|
130
|
+
erubi (1.13.1)
|
|
131
|
+
et-orbi (1.4.1)
|
|
132
|
+
tzinfo
|
|
133
|
+
fugit (1.13.0)
|
|
134
|
+
et-orbi (~> 1.4)
|
|
135
|
+
raabro (~> 1.4)
|
|
136
|
+
globalid (1.4.0)
|
|
137
|
+
activesupport (>= 6.1)
|
|
138
|
+
i18n (1.14.8)
|
|
139
|
+
concurrent-ruby (~> 1.0)
|
|
140
|
+
io-console (0.8.2)
|
|
141
|
+
irb (1.18.0)
|
|
142
|
+
pp (>= 0.6.0)
|
|
143
|
+
prism (>= 1.3.0)
|
|
144
|
+
rdoc (>= 4.0.0)
|
|
145
|
+
reline (>= 0.4.2)
|
|
146
|
+
logger (1.7.0)
|
|
147
|
+
loofah (2.25.2)
|
|
148
|
+
crass (~> 1.0.2)
|
|
149
|
+
nokogiri (>= 1.12.0)
|
|
150
|
+
mail (2.9.1)
|
|
151
|
+
logger
|
|
152
|
+
mini_mime (>= 0.1.1)
|
|
153
|
+
net-imap
|
|
154
|
+
net-pop
|
|
155
|
+
net-smtp
|
|
156
|
+
marcel (1.2.1)
|
|
157
|
+
mini_mime (1.1.5)
|
|
158
|
+
mini_portile2 (2.8.9)
|
|
159
|
+
minitest (5.26.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 (2.2.23)
|
|
188
|
+
rack-session (1.0.2)
|
|
189
|
+
rack (< 3)
|
|
190
|
+
rack-test (2.2.0)
|
|
191
|
+
rack (>= 1.3)
|
|
192
|
+
rackup (1.0.1)
|
|
193
|
+
rack (< 3)
|
|
194
|
+
webrick
|
|
195
|
+
rails (7.1.6)
|
|
196
|
+
actioncable (= 7.1.6)
|
|
197
|
+
actionmailbox (= 7.1.6)
|
|
198
|
+
actionmailer (= 7.1.6)
|
|
199
|
+
actionpack (= 7.1.6)
|
|
200
|
+
actiontext (= 7.1.6)
|
|
201
|
+
actionview (= 7.1.6)
|
|
202
|
+
activejob (= 7.1.6)
|
|
203
|
+
activemodel (= 7.1.6)
|
|
204
|
+
activerecord (= 7.1.6)
|
|
205
|
+
activestorage (= 7.1.6)
|
|
206
|
+
activesupport (= 7.1.6)
|
|
207
|
+
bundler (>= 1.15.0)
|
|
208
|
+
railties (= 7.1.6)
|
|
209
|
+
rails-dom-testing (2.3.0)
|
|
210
|
+
activesupport (>= 5.0.0)
|
|
211
|
+
minitest
|
|
212
|
+
nokogiri (>= 1.6)
|
|
213
|
+
rails-html-sanitizer (1.7.1)
|
|
214
|
+
loofah (~> 2.25, >= 2.25.2)
|
|
215
|
+
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)
|
|
216
|
+
railties (7.1.6)
|
|
217
|
+
actionpack (= 7.1.6)
|
|
218
|
+
activesupport (= 7.1.6)
|
|
219
|
+
cgi
|
|
220
|
+
irb
|
|
221
|
+
rackup (>= 1.0.0)
|
|
222
|
+
rake (>= 12.2)
|
|
223
|
+
thor (~> 1.0, >= 1.2.2)
|
|
224
|
+
tsort (>= 0.2)
|
|
225
|
+
zeitwerk (~> 2.6)
|
|
226
|
+
rake (12.3.3)
|
|
227
|
+
rdoc (7.2.0)
|
|
228
|
+
erb
|
|
229
|
+
psych (>= 4.0.0)
|
|
230
|
+
tsort
|
|
231
|
+
redis (4.8.1)
|
|
232
|
+
reline (0.6.3)
|
|
233
|
+
io-console (~> 0.5)
|
|
234
|
+
rexml (3.4.1)
|
|
235
|
+
rspec (3.13.2)
|
|
236
|
+
rspec-core (~> 3.13.0)
|
|
237
|
+
rspec-expectations (~> 3.13.0)
|
|
238
|
+
rspec-mocks (~> 3.13.0)
|
|
239
|
+
rspec-core (3.13.6)
|
|
240
|
+
rspec-support (~> 3.13.0)
|
|
241
|
+
rspec-expectations (3.13.5)
|
|
242
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
243
|
+
rspec-support (~> 3.13.0)
|
|
244
|
+
rspec-mocks (3.13.8)
|
|
245
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
246
|
+
rspec-support (~> 3.13.0)
|
|
247
|
+
rspec-retry (0.6.2)
|
|
248
|
+
rspec-core (> 3.3)
|
|
249
|
+
rspec-support (3.13.7)
|
|
250
|
+
rufus-scheduler (3.9.2)
|
|
251
|
+
fugit (~> 1.1, >= 1.11.1)
|
|
252
|
+
securerandom (0.3.2)
|
|
253
|
+
sidekiq (6.5.12)
|
|
254
|
+
connection_pool (>= 2.2.5, < 3)
|
|
255
|
+
rack (~> 2.0)
|
|
256
|
+
redis (>= 4.5.0, < 5)
|
|
257
|
+
sidekiq-cron (2.4.0)
|
|
258
|
+
cronex (>= 0.13.0)
|
|
259
|
+
fugit (~> 1.8, >= 1.11.1)
|
|
260
|
+
globalid (>= 1.0.1)
|
|
261
|
+
sidekiq (>= 6.5.0)
|
|
262
|
+
sidekiq-scheduler (5.0.6)
|
|
263
|
+
rufus-scheduler (~> 3.2)
|
|
264
|
+
sidekiq (>= 6, < 8)
|
|
265
|
+
tilt (>= 1.4.0, < 3)
|
|
266
|
+
simplecov (0.22.0)
|
|
267
|
+
docile (~> 1.1)
|
|
268
|
+
simplecov-html (~> 0.11)
|
|
269
|
+
simplecov_json_formatter (~> 0.1)
|
|
270
|
+
simplecov-cobertura (3.2.0)
|
|
271
|
+
rexml
|
|
272
|
+
simplecov (~> 0.19)
|
|
273
|
+
simplecov-html (0.13.2)
|
|
274
|
+
simplecov_json_formatter (0.1.4)
|
|
275
|
+
stringio (3.2.0)
|
|
276
|
+
thor (1.5.0)
|
|
277
|
+
tilt (2.8.0)
|
|
278
|
+
timecop (0.9.11)
|
|
279
|
+
timeout (0.6.1)
|
|
280
|
+
tsort (0.2.0)
|
|
281
|
+
tzinfo (2.0.6)
|
|
282
|
+
concurrent-ruby (~> 1.0)
|
|
283
|
+
unicode (0.4.4.5)
|
|
284
|
+
webrick (1.9.2)
|
|
285
|
+
websocket-driver (0.8.2)
|
|
286
|
+
base64
|
|
287
|
+
websocket-extensions (>= 0.1.0)
|
|
288
|
+
websocket-extensions (0.1.5)
|
|
289
|
+
zeitwerk (2.6.18)
|
|
290
|
+
|
|
291
|
+
PLATFORMS
|
|
292
|
+
aarch64-linux
|
|
293
|
+
ruby
|
|
294
|
+
x86_64-linux
|
|
295
|
+
|
|
296
|
+
DEPENDENCIES
|
|
297
|
+
cgi
|
|
298
|
+
debug!
|
|
299
|
+
irb
|
|
300
|
+
rails (> 5.2.0)
|
|
301
|
+
rake (~> 12.0)
|
|
302
|
+
rexml (= 3.4.1)
|
|
303
|
+
rspec
|
|
304
|
+
rspec-retry
|
|
305
|
+
sentry-rails!
|
|
306
|
+
sentry-ruby!
|
|
307
|
+
sentry-sidekiq!
|
|
308
|
+
sidekiq (~> 6.5)
|
|
309
|
+
sidekiq-cron
|
|
310
|
+
sidekiq-scheduler (~> 5.0.0)
|
|
311
|
+
simplecov
|
|
312
|
+
simplecov-cobertura (~> 3.0)
|
|
313
|
+
timecop
|
|
314
|
+
|
|
315
|
+
BUNDLED WITH
|
|
316
|
+
2.4.22
|