e2e 0.7.0 → 0.7.1

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: e9aa45b8632923a978457786f2b48b383ff7287ef92ccafede5c5d8b66367f46
4
- data.tar.gz: ff1b990639ae52420099e5712abe60b94adf6585c809bb97a83eedffc927121d
3
+ metadata.gz: e58fc07c8356119f92b3c2be2849227d2be09a4f0e0e6410916b1672b60d50d9
4
+ data.tar.gz: 0bfe39f3c8bca7b434dae7ca3922ffe08db1bf6fe351a5cf6ed1759a11d688bb
5
5
  SHA512:
6
- metadata.gz: a6d2c6d4c947873e1891a0ee955a8a8e32c84d9aa9e4045363f17332eb4444be7e52d061f08a62b800e6908934a1fd293cf0c1e5300e28aa07f17feb1f4ee4ae
7
- data.tar.gz: 2b4ab4947940bb244a5f2afdb3080e1334b1ca8575ca4eb621a1daf5dfa1974949ff09532634c0bcffd6d61a4ed64016b4a55aa3b9477651344fc6cbf1fe134e
6
+ metadata.gz: 1574bb81c3de068d48e255e5c9b4515ce5fac93ed07e2238599c597eaa0b6dadd3e10aee0bad5f5ff4efe45dd6582f249e39f2b7e78e7f4cb95974644a6b2f58
7
+ data.tar.gz: 54a2aba91a6e02d3ad3bd628c7dc8f99abbba91930bf83285bd259873f0e89eb2d6f9b41bceda895982eb5826051fc0114ae7e0a719518e4fff8bff22942f579
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 4.0.6
data/Appraisals CHANGED
@@ -1,5 +1,8 @@
1
1
  appraise "rails-7.0" do
2
2
  gem "rails", "~> 7.0.0"
3
+ # ActiveRecord 7.0's sqlite3 adapter hard-pins `gem "sqlite3", "~> 1.4"` at
4
+ # runtime; the sqlite3 2.x line (required by Rails 8.0+) fails to activate.
5
+ gem "sqlite3", "~> 1.4"
3
6
  end
4
7
 
5
8
  appraise "rails-7.1" do
data/CHANGELOG.md CHANGED
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.7.1] - 2026-08-05
11
+
12
+ ### Fixed
13
+
14
+ - Shared ActiveRecord connection now also overrides `lease_connection` and `with_connection` (Rails 7.2+/8), preventing intermittent deadlocks where the example thread held the only pool connection during Playwright navigation while the WEBrick thread sat `idle in transaction`
15
+ - `E2E::Rails.enable_shared_connection!` no longer crashes on Rails 7.0/7.1, where `lease_connection`/`with_connection` don't exist yet; it bootstraps and falls back through `connection` instead
16
+ - Playwright `visit` defaults to `waitUntil: "domcontentloaded"` with a configurable navigation timeout so pages with third-party iframes (YouTube/Vimeo) no longer hang on full `load`
17
+ - Blocking Playwright actions (`click`, `fill_in`, etc.) release the example thread's sticky AR lease while waiting for the browser when shared connection is enabled
18
+ - WEBrick test server is shut down after the RSpec/Minitest suite finishes
19
+ - `E2E::Server` resolves the WEBrick handler via `Rack::Handler` on Rack 2.x stacks (e.g. Rails 7.0/7.1, which pin `rack ~> 2.2`), where the `rackup` gem has no `Handler` module of its own
20
+
21
+ ### Added
22
+
23
+ - `E2E.config.navigation_wait_until` (default: `"domcontentloaded"`)
24
+ - `E2E.config.navigation_timeout` (default: `30` seconds)
25
+ - `E2E.stop_server!`
26
+
10
27
  ## [0.7.0] - 2026-07-15
11
28
 
12
29
  ### Changed
data/README.md CHANGED
@@ -334,6 +334,8 @@ E2E.configure do |config|
334
334
  config.headless = ENV.fetch("HEADLESS", "true") == "true"
335
335
  config.app = Rails.application # Automatic Rack booting
336
336
  config.wait_timeout = 5 # Seconds to wait in auto-waiting matchers (default: 5)
337
+ config.navigation_wait_until = "domcontentloaded" # Avoid hangs on third-party iframes
338
+ config.navigation_timeout = 30 # Seconds for page.goto
337
339
  config.flash_selectors = {
338
340
  any: "[role='alert'], [role='status'], .flash",
339
341
  notice: "[role='status'], .flash.notice",
@@ -11,5 +11,6 @@ gem "standard"
11
11
  gem "rubocop-rspec"
12
12
  gem "rubocop-performance"
13
13
  gem "rails", "~> 7.0.0"
14
+ gem "sqlite3", "~> 1.4"
14
15
 
15
16
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- e2e (0.7.0)
4
+ e2e (0.7.1)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -130,6 +130,7 @@ GEM
130
130
  mime-types-data (~> 3.2025, >= 3.2025.0507)
131
131
  mime-types-data (3.2026.0701)
132
132
  mini_mime (1.1.5)
133
+ mini_portile2 (2.8.9)
133
134
  minitest (6.0.6)
134
135
  drb (~> 2.0)
135
136
  prism (~> 1.5)
@@ -259,6 +260,8 @@ GEM
259
260
  ruby-progressbar (1.13.0)
260
261
  securerandom (0.4.1)
261
262
  simplecov (1.0.1)
263
+ sqlite3 (1.7.3)
264
+ mini_portile2 (~> 2.8.0)
262
265
  standard (1.55.0)
263
266
  language_server-protocol (~> 3.17.0.2)
264
267
  lint_roller (~> 1.0)
@@ -297,6 +300,7 @@ PLATFORMS
297
300
  x86_64-linux-musl
298
301
 
299
302
  DEPENDENCIES
303
+ activerecord
300
304
  appraisal
301
305
  e2e!
302
306
  irb
@@ -308,6 +312,7 @@ DEPENDENCIES
308
312
  rubocop-performance
309
313
  rubocop-rspec
310
314
  simplecov
315
+ sqlite3 (~> 1.4)
311
316
  standard
312
317
 
313
318
  CHECKSUMS
@@ -333,7 +338,7 @@ CHECKSUMS
333
338
  date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
334
339
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
335
340
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
336
- e2e (0.7.0)
341
+ e2e (0.7.1)
337
342
  erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
338
343
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
339
344
  globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
@@ -352,6 +357,7 @@ CHECKSUMS
352
357
  mime-types (3.7.0) sha256=dcebf61c246f08e15a4de34e386ebe8233791e868564a470c3fe77c00eed5e56
353
358
  mime-types-data (3.2026.0701) sha256=cd8811e1fb89d836499ba0582368a10ee74cef929ba956d1d5ddca045e6a730f
354
359
  mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
360
+ mini_portile2 (2.8.9) sha256=0cd7c7f824e010c072e33f68bc02d85a00aeb6fce05bb4819c03dfd3c140c289
355
361
  minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
356
362
  mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
357
363
  net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
@@ -399,6 +405,7 @@ CHECKSUMS
399
405
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
400
406
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
401
407
  simplecov (1.0.1) sha256=419d93c40484159d20b40e26e9a83cdd4c3afa2f3fd443bb8946c301cd658d75
408
+ sqlite3 (1.7.3) sha256=fa77f63c709548f46d4e9b6bb45cda52aa3881aa12cc85991132758e8968701c
402
409
  standard (1.55.0) sha256=8a8f2c3e681a4db3aafde1b301561b0f3d7c5f06c160167cb744a4d7baf0426e
403
410
  standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
404
411
  standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- e2e (0.7.0)
4
+ e2e (0.7.1)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -99,13 +99,13 @@ GEM
99
99
  bigdecimal (4.1.2)
100
100
  builder (3.3.0)
101
101
  cgi (0.5.2)
102
- concurrent-ruby (1.3.7)
102
+ concurrent-ruby (1.3.8)
103
103
  connection_pool (3.0.2)
104
104
  crass (1.0.7)
105
105
  date (3.5.1)
106
106
  diff-lcs (1.6.2)
107
107
  drb (2.2.3)
108
- erb (6.0.4)
108
+ erb (6.0.7)
109
109
  erubi (1.13.1)
110
110
  globalid (1.4.0)
111
111
  activesupport (>= 6.1)
@@ -117,12 +117,12 @@ GEM
117
117
  prism (>= 1.3.0)
118
118
  rdoc (>= 4.0.0)
119
119
  reline (>= 0.4.2)
120
- json (2.21.1)
120
+ json (2.21.2)
121
121
  language_server-protocol (3.17.0.6)
122
122
  lefthook (2.1.10)
123
123
  lint_roller (1.1.0)
124
124
  logger (1.7.0)
125
- loofah (2.25.1)
125
+ loofah (2.25.2)
126
126
  crass (~> 1.0.2)
127
127
  nokogiri (>= 1.12.0)
128
128
  mail (2.9.1)
@@ -141,7 +141,7 @@ GEM
141
141
  drb (~> 2.0)
142
142
  prism (~> 1.5)
143
143
  mutex_m (0.3.0)
144
- net-imap (0.6.4.1)
144
+ net-imap (0.6.6)
145
145
  date
146
146
  net-protocol
147
147
  net-pop (0.1.2)
@@ -168,10 +168,10 @@ GEM
168
168
  nokogiri (1.19.4-x86_64-linux-musl)
169
169
  racc (~> 1.4)
170
170
  parallel (2.1.0)
171
- parser (3.3.11.1)
171
+ parser (3.3.12.0)
172
172
  ast (~> 2.4.1)
173
173
  racc
174
- playwright-ruby-client (1.61.0)
174
+ playwright-ruby-client (1.62.0)
175
175
  base64
176
176
  concurrent-ruby (>= 1.1.6)
177
177
  mime-types (>= 3.0)
@@ -206,8 +206,8 @@ GEM
206
206
  activesupport (>= 5.0.0)
207
207
  minitest
208
208
  nokogiri (>= 1.6)
209
- rails-html-sanitizer (1.7.0)
210
- loofah (~> 2.25)
209
+ rails-html-sanitizer (1.7.1)
210
+ loofah (~> 2.25, >= 2.25.2)
211
211
  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)
212
212
  railties (7.1.6)
213
213
  actionpack (= 7.1.6)
@@ -221,7 +221,7 @@ GEM
221
221
  zeitwerk (~> 2.6)
222
222
  rainbow (3.1.1)
223
223
  rake (13.4.2)
224
- rbs (4.0.3)
224
+ rbs (4.1.2)
225
225
  logger
226
226
  prism (>= 1.6.0)
227
227
  tsort
@@ -246,7 +246,7 @@ GEM
246
246
  diff-lcs (>= 1.2.0, < 2.0)
247
247
  rspec-support (~> 3.13.0)
248
248
  rspec-support (3.13.7)
249
- rubocop (1.87.0)
249
+ rubocop (1.88.2)
250
250
  json (~> 2.3)
251
251
  language_server-protocol (~> 3.17.0.2)
252
252
  lint_roller (~> 1.1.0)
@@ -270,11 +270,19 @@ GEM
270
270
  rubocop (~> 1.86, >= 1.86.2)
271
271
  ruby-progressbar (1.13.0)
272
272
  securerandom (0.4.1)
273
- simplecov (1.0.1)
274
- standard (1.55.0)
273
+ simplecov (1.0.3)
274
+ sqlite3 (2.9.5-aarch64-linux-gnu)
275
+ sqlite3 (2.9.5-aarch64-linux-musl)
276
+ sqlite3 (2.9.5-arm-linux-gnu)
277
+ sqlite3 (2.9.5-arm-linux-musl)
278
+ sqlite3 (2.9.5-arm64-darwin)
279
+ sqlite3 (2.9.5-x86_64-darwin)
280
+ sqlite3 (2.9.5-x86_64-linux-gnu)
281
+ sqlite3 (2.9.5-x86_64-linux-musl)
282
+ standard (1.56.0)
275
283
  language_server-protocol (~> 3.17.0.2)
276
284
  lint_roller (~> 1.0)
277
- rubocop (~> 1.87.0)
285
+ rubocop (~> 1.88.0)
278
286
  standard-custom (~> 1.0.0)
279
287
  standard-performance (~> 1.8)
280
288
  standard-custom (1.0.2)
@@ -296,7 +304,7 @@ GEM
296
304
  base64
297
305
  websocket-extensions (>= 0.1.0)
298
306
  websocket-extensions (0.1.5)
299
- zeitwerk (2.8.2)
307
+ zeitwerk (2.8.3)
300
308
 
301
309
  PLATFORMS
302
310
  aarch64-linux-gnu
@@ -309,6 +317,7 @@ PLATFORMS
309
317
  x86_64-linux-musl
310
318
 
311
319
  DEPENDENCIES
320
+ activerecord
312
321
  appraisal
313
322
  e2e!
314
323
  irb
@@ -320,6 +329,7 @@ DEPENDENCIES
320
329
  rubocop-performance
321
330
  rubocop-rspec
322
331
  simplecov
332
+ sqlite3
323
333
  standard
324
334
 
325
335
  CHECKSUMS
@@ -341,25 +351,25 @@ CHECKSUMS
341
351
  bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
342
352
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
343
353
  cgi (0.5.2) sha256=61ca30298171190fd4fa0d8018e57ada456eae9b7a2b78526debf7f0a0e6f8bb
344
- concurrent-ruby (1.3.7) sha256=4412caec3a5ea2e5fdc52076724c071a81f2c0593d83b2ac8cbb8ca63b3151b0
354
+ concurrent-ruby (1.3.8) sha256=b2f1be836e968ccc78ccfce277ea79c72a88633f22306782c16ff23fb415d1e1
345
355
  connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
346
356
  crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
347
357
  date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
348
358
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
349
359
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
350
- e2e (0.7.0)
351
- erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
360
+ e2e (0.7.1)
361
+ erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
352
362
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
353
363
  globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
354
364
  i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
355
365
  io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
356
366
  irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
357
- json (2.21.1) sha256=13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583
367
+ json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
358
368
  language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
359
369
  lefthook (2.1.10) sha256=cc9c06bd8ea689e8b8016eab9769e54d696d07951860c1c6d28e8f6812e61b65
360
370
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
361
371
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
362
- loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
372
+ loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918
363
373
  mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8
364
374
  marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f
365
375
  mime-types (3.7.0) sha256=dcebf61c246f08e15a4de34e386ebe8233791e868564a470c3fe77c00eed5e56
@@ -367,7 +377,7 @@ CHECKSUMS
367
377
  mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
368
378
  minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
369
379
  mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
370
- net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
380
+ net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
371
381
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
372
382
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
373
383
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
@@ -381,8 +391,8 @@ CHECKSUMS
381
391
  nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
382
392
  nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
383
393
  parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
384
- parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
385
- playwright-ruby-client (1.61.0) sha256=1f5c5f0307a2f6bd70b4fa797020a30eef5680caf8d5bd9ccc8d3937f6666e08
394
+ parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
395
+ playwright-ruby-client (1.62.0) sha256=44eb6051ab7987f68a1288a7db7892403e59680116739987729c5fecfdb55715
386
396
  pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
387
397
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
388
398
  prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
@@ -393,11 +403,11 @@ CHECKSUMS
393
403
  rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
394
404
  rails (7.1.6) sha256=9a0a335e510de3daad7542cd791af3d8ff710c644e1da17ed12e96d2f28a7470
395
405
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
396
- rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
406
+ rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
397
407
  railties (7.1.6) sha256=2a10e97f2eaca66d11f0fef4b1f4d826e6ee28d4cf01ff16624420dd45e7de1c
398
408
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
399
409
  rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
400
- rbs (4.0.3) sha256=5a7bf70e2628549d9a1f44eae447b2cfe55968a9c60cfff52693a4bdcc020e14
410
+ rbs (4.1.2) sha256=050eb1d8b508f1233bed929c0f2c7052302f7adf295230d9cb314e9024078f48
401
411
  rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
402
412
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
403
413
  reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
@@ -406,14 +416,22 @@ CHECKSUMS
406
416
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
407
417
  rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
408
418
  rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
409
- rubocop (1.87.0) sha256=b9d9ddf55116a513f8ef2c7ae660662d8b49301f118d3f0df61865b33a5c188d
419
+ rubocop (1.88.2) sha256=8def251c90cd955feb4daa3edc0ab56893250c4ce90ef81e6c80c03f9a939bbf
410
420
  rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
411
421
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
412
422
  rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
413
423
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
414
424
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
415
- simplecov (1.0.1) sha256=419d93c40484159d20b40e26e9a83cdd4c3afa2f3fd443bb8946c301cd658d75
416
- standard (1.55.0) sha256=8a8f2c3e681a4db3aafde1b301561b0f3d7c5f06c160167cb744a4d7baf0426e
425
+ simplecov (1.0.3) sha256=38ef0514f16ae7562f0d0f4df02610071115103d301b6de7dacbcc000082e39b
426
+ sqlite3 (2.9.5-aarch64-linux-gnu) sha256=78075b6337d3d182c6d2b4691049ed45cd220826160c9ea18946bf6a1de200dc
427
+ sqlite3 (2.9.5-aarch64-linux-musl) sha256=18c801185deb4adc01ddb281e8f672a39e3d1729979ca91e39439cd3eac0402d
428
+ sqlite3 (2.9.5-arm-linux-gnu) sha256=1bdfca0c7d63998c60b0f4a8e3c8df2d33800ccc4abd2d612eddbbbc92a4c48b
429
+ sqlite3 (2.9.5-arm-linux-musl) sha256=bae1109d12b2e9f588455967729b008e1ff4feb7761749df695019c9079913c6
430
+ sqlite3 (2.9.5-arm64-darwin) sha256=d0cf444a70fc9395d513cfbcc1e6719e224aa645314e3824cb0474c721425aa2
431
+ sqlite3 (2.9.5-x86_64-darwin) sha256=8e9caae38bd7ebb29cbeee3e7ab1d12dc2327d9a1b92c7fcf0dda05589627a81
432
+ sqlite3 (2.9.5-x86_64-linux-gnu) sha256=233dbcb6714148dd23bc5aeb33e8efd6eac974969564ddd5794c23d5f52b231e
433
+ sqlite3 (2.9.5-x86_64-linux-musl) sha256=e7d3a7474e8af0f96150c21abc203fbab5437206bfcdf11deab7741c0ca516f2
434
+ standard (1.56.0) sha256=ae2af4d9669589162ac69ed5ef59dcf9f346d4afc81f7e62b84339310dfcb787
417
435
  standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
418
436
  standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
419
437
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
@@ -425,7 +443,7 @@ CHECKSUMS
425
443
  webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
426
444
  websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
427
445
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
428
- zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
446
+ zeitwerk (2.8.3) sha256=2c85125a8467ce069e20123d1e709a08955c9d29c118c25b46b7b7fafdbb92e5
429
447
 
430
448
  BUNDLED WITH
431
449
  4.0.5
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- e2e (0.7.0)
4
+ e2e (0.7.1)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -93,13 +93,13 @@ GEM
93
93
  bigdecimal (4.1.2)
94
94
  builder (3.3.0)
95
95
  cgi (0.5.2)
96
- concurrent-ruby (1.3.7)
96
+ concurrent-ruby (1.3.8)
97
97
  connection_pool (3.0.2)
98
98
  crass (1.0.7)
99
99
  date (3.5.1)
100
100
  diff-lcs (1.6.2)
101
101
  drb (2.2.3)
102
- erb (6.0.4)
102
+ erb (6.0.7)
103
103
  erubi (1.13.1)
104
104
  globalid (1.4.0)
105
105
  activesupport (>= 6.1)
@@ -111,12 +111,12 @@ GEM
111
111
  prism (>= 1.3.0)
112
112
  rdoc (>= 4.0.0)
113
113
  reline (>= 0.4.2)
114
- json (2.21.1)
114
+ json (2.21.2)
115
115
  language_server-protocol (3.17.0.6)
116
116
  lefthook (2.1.10)
117
117
  lint_roller (1.1.0)
118
118
  logger (1.7.0)
119
- loofah (2.25.1)
119
+ loofah (2.25.2)
120
120
  crass (~> 1.0.2)
121
121
  nokogiri (>= 1.12.0)
122
122
  mail (2.9.1)
@@ -134,7 +134,7 @@ GEM
134
134
  minitest (6.0.6)
135
135
  drb (~> 2.0)
136
136
  prism (~> 1.5)
137
- net-imap (0.6.4.1)
137
+ net-imap (0.6.6)
138
138
  date
139
139
  net-protocol
140
140
  net-pop (0.1.2)
@@ -161,10 +161,10 @@ GEM
161
161
  nokogiri (1.19.4-x86_64-linux-musl)
162
162
  racc (~> 1.4)
163
163
  parallel (2.1.0)
164
- parser (3.3.11.1)
164
+ parser (3.3.12.0)
165
165
  ast (~> 2.4.1)
166
166
  racc
167
- playwright-ruby-client (1.61.0)
167
+ playwright-ruby-client (1.62.0)
168
168
  base64
169
169
  concurrent-ruby (>= 1.1.6)
170
170
  mime-types (>= 3.0)
@@ -199,8 +199,8 @@ GEM
199
199
  activesupport (>= 5.0.0)
200
200
  minitest
201
201
  nokogiri (>= 1.6)
202
- rails-html-sanitizer (1.7.0)
203
- loofah (~> 2.25)
202
+ rails-html-sanitizer (1.7.1)
203
+ loofah (~> 2.25, >= 2.25.2)
204
204
  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)
205
205
  railties (7.2.3)
206
206
  actionpack (= 7.2.3)
@@ -214,7 +214,7 @@ GEM
214
214
  zeitwerk (~> 2.6)
215
215
  rainbow (3.1.1)
216
216
  rake (13.4.2)
217
- rbs (4.0.3)
217
+ rbs (4.1.2)
218
218
  logger
219
219
  prism (>= 1.6.0)
220
220
  tsort
@@ -239,7 +239,7 @@ GEM
239
239
  diff-lcs (>= 1.2.0, < 2.0)
240
240
  rspec-support (~> 3.13.0)
241
241
  rspec-support (3.13.7)
242
- rubocop (1.87.0)
242
+ rubocop (1.88.2)
243
243
  json (~> 2.3)
244
244
  language_server-protocol (~> 3.17.0.2)
245
245
  lint_roller (~> 1.1.0)
@@ -263,11 +263,19 @@ GEM
263
263
  rubocop (~> 1.86, >= 1.86.2)
264
264
  ruby-progressbar (1.13.0)
265
265
  securerandom (0.4.1)
266
- simplecov (1.0.1)
267
- standard (1.55.0)
266
+ simplecov (1.0.3)
267
+ sqlite3 (2.9.5-aarch64-linux-gnu)
268
+ sqlite3 (2.9.5-aarch64-linux-musl)
269
+ sqlite3 (2.9.5-arm-linux-gnu)
270
+ sqlite3 (2.9.5-arm-linux-musl)
271
+ sqlite3 (2.9.5-arm64-darwin)
272
+ sqlite3 (2.9.5-x86_64-darwin)
273
+ sqlite3 (2.9.5-x86_64-linux-gnu)
274
+ sqlite3 (2.9.5-x86_64-linux-musl)
275
+ standard (1.56.0)
268
276
  language_server-protocol (~> 3.17.0.2)
269
277
  lint_roller (~> 1.0)
270
- rubocop (~> 1.87.0)
278
+ rubocop (~> 1.88.0)
271
279
  standard-custom (~> 1.0.0)
272
280
  standard-performance (~> 1.8)
273
281
  standard-custom (1.0.2)
@@ -290,7 +298,7 @@ GEM
290
298
  base64
291
299
  websocket-extensions (>= 0.1.0)
292
300
  websocket-extensions (0.1.5)
293
- zeitwerk (2.8.2)
301
+ zeitwerk (2.8.3)
294
302
 
295
303
  PLATFORMS
296
304
  aarch64-linux-gnu
@@ -303,6 +311,7 @@ PLATFORMS
303
311
  x86_64-linux-musl
304
312
 
305
313
  DEPENDENCIES
314
+ activerecord
306
315
  appraisal
307
316
  e2e!
308
317
  irb
@@ -314,6 +323,7 @@ DEPENDENCIES
314
323
  rubocop-performance
315
324
  rubocop-rspec
316
325
  simplecov
326
+ sqlite3
317
327
  standard
318
328
 
319
329
  CHECKSUMS
@@ -335,32 +345,32 @@ CHECKSUMS
335
345
  bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
336
346
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
337
347
  cgi (0.5.2) sha256=61ca30298171190fd4fa0d8018e57ada456eae9b7a2b78526debf7f0a0e6f8bb
338
- concurrent-ruby (1.3.7) sha256=4412caec3a5ea2e5fdc52076724c071a81f2c0593d83b2ac8cbb8ca63b3151b0
348
+ concurrent-ruby (1.3.8) sha256=b2f1be836e968ccc78ccfce277ea79c72a88633f22306782c16ff23fb415d1e1
339
349
  connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
340
350
  crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
341
351
  date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
342
352
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
343
353
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
344
- e2e (0.7.0)
345
- erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
354
+ e2e (0.7.1)
355
+ erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
346
356
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
347
357
  globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
348
358
  i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
349
359
  io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
350
360
  irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
351
- json (2.21.1) sha256=13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583
361
+ json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
352
362
  language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
353
363
  lefthook (2.1.10) sha256=cc9c06bd8ea689e8b8016eab9769e54d696d07951860c1c6d28e8f6812e61b65
354
364
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
355
365
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
356
- loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
366
+ loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918
357
367
  mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8
358
368
  marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f
359
369
  mime-types (3.7.0) sha256=dcebf61c246f08e15a4de34e386ebe8233791e868564a470c3fe77c00eed5e56
360
370
  mime-types-data (3.2026.0701) sha256=cd8811e1fb89d836499ba0582368a10ee74cef929ba956d1d5ddca045e6a730f
361
371
  mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
362
372
  minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
363
- net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
373
+ net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
364
374
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
365
375
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
366
376
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
@@ -374,8 +384,8 @@ CHECKSUMS
374
384
  nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
375
385
  nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
376
386
  parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
377
- parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
378
- playwright-ruby-client (1.61.0) sha256=1f5c5f0307a2f6bd70b4fa797020a30eef5680caf8d5bd9ccc8d3937f6666e08
387
+ parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
388
+ playwright-ruby-client (1.62.0) sha256=44eb6051ab7987f68a1288a7db7892403e59680116739987729c5fecfdb55715
379
389
  pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
380
390
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
381
391
  prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
@@ -386,11 +396,11 @@ CHECKSUMS
386
396
  rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
387
397
  rails (7.2.3) sha256=9a9812eb131189676e64665f6883fc9c4051f412cc87ef9e3fa242a09c609bff
388
398
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
389
- rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
399
+ rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
390
400
  railties (7.2.3) sha256=6eb010a6bfe6f223e783f739ddfcbdb5b88b1f3a87f7739f0a0685e466250422
391
401
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
392
402
  rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
393
- rbs (4.0.3) sha256=5a7bf70e2628549d9a1f44eae447b2cfe55968a9c60cfff52693a4bdcc020e14
403
+ rbs (4.1.2) sha256=050eb1d8b508f1233bed929c0f2c7052302f7adf295230d9cb314e9024078f48
394
404
  rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
395
405
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
396
406
  reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
@@ -399,14 +409,22 @@ CHECKSUMS
399
409
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
400
410
  rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
401
411
  rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
402
- rubocop (1.87.0) sha256=b9d9ddf55116a513f8ef2c7ae660662d8b49301f118d3f0df61865b33a5c188d
412
+ rubocop (1.88.2) sha256=8def251c90cd955feb4daa3edc0ab56893250c4ce90ef81e6c80c03f9a939bbf
403
413
  rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
404
414
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
405
415
  rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
406
416
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
407
417
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
408
- simplecov (1.0.1) sha256=419d93c40484159d20b40e26e9a83cdd4c3afa2f3fd443bb8946c301cd658d75
409
- standard (1.55.0) sha256=8a8f2c3e681a4db3aafde1b301561b0f3d7c5f06c160167cb744a4d7baf0426e
418
+ simplecov (1.0.3) sha256=38ef0514f16ae7562f0d0f4df02610071115103d301b6de7dacbcc000082e39b
419
+ sqlite3 (2.9.5-aarch64-linux-gnu) sha256=78075b6337d3d182c6d2b4691049ed45cd220826160c9ea18946bf6a1de200dc
420
+ sqlite3 (2.9.5-aarch64-linux-musl) sha256=18c801185deb4adc01ddb281e8f672a39e3d1729979ca91e39439cd3eac0402d
421
+ sqlite3 (2.9.5-arm-linux-gnu) sha256=1bdfca0c7d63998c60b0f4a8e3c8df2d33800ccc4abd2d612eddbbbc92a4c48b
422
+ sqlite3 (2.9.5-arm-linux-musl) sha256=bae1109d12b2e9f588455967729b008e1ff4feb7761749df695019c9079913c6
423
+ sqlite3 (2.9.5-arm64-darwin) sha256=d0cf444a70fc9395d513cfbcc1e6719e224aa645314e3824cb0474c721425aa2
424
+ sqlite3 (2.9.5-x86_64-darwin) sha256=8e9caae38bd7ebb29cbeee3e7ab1d12dc2327d9a1b92c7fcf0dda05589627a81
425
+ sqlite3 (2.9.5-x86_64-linux-gnu) sha256=233dbcb6714148dd23bc5aeb33e8efd6eac974969564ddd5794c23d5f52b231e
426
+ sqlite3 (2.9.5-x86_64-linux-musl) sha256=e7d3a7474e8af0f96150c21abc203fbab5437206bfcdf11deab7741c0ca516f2
427
+ standard (1.56.0) sha256=ae2af4d9669589162ac69ed5ef59dcf9f346d4afc81f7e62b84339310dfcb787
410
428
  standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
411
429
  standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
412
430
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
@@ -419,7 +437,7 @@ CHECKSUMS
419
437
  webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
420
438
  websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
421
439
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
422
- zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
440
+ zeitwerk (2.8.3) sha256=2c85125a8467ce069e20123d1e709a08955c9d29c118c25b46b7b7fafdbb92e5
423
441
 
424
442
  BUNDLED WITH
425
443
  4.0.5