e2e 0.7.0 → 0.7.2

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: 8b1979d8cb29dc3f972388c02f2e9b650d46bbb3a6e77d5df9a2b73469c3147f
4
+ data.tar.gz: 142e1b3e1f5f0d340d1500c403fc2a5bdda313a2eedc91b3a572f1d552b55d61
5
5
  SHA512:
6
- metadata.gz: a6d2c6d4c947873e1891a0ee955a8a8e32c84d9aa9e4045363f17332eb4444be7e52d061f08a62b800e6908934a1fd293cf0c1e5300e28aa07f17feb1f4ee4ae
7
- data.tar.gz: 2b4ab4947940bb244a5f2afdb3080e1334b1ca8575ca4eb621a1daf5dfa1974949ff09532634c0bcffd6d61a4ed64016b4a55aa3b9477651344fc6cbf1fe134e
6
+ metadata.gz: 34870c3c1ce7dc4a649377763117170a84a9bcd43f3c530798965948d4b0a5ca979049f8cfffcff36ab923e89b34c54d436b271d1629fb13ce03c1d6087e2e4e
7
+ data.tar.gz: 341af70802d3e123fde8d0fb58b8bc25c5d795857cd6d913378304ecd3b5e8c6f97195e2f5d407d9c514a8e4cd3a05b78488c7d7970149f0cf1a51b71f2551ee
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,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.7.2] - 2026-08-13
11
+
12
+ ### Added
13
+
14
+ - `E2E.config.ensure_vite_assets` (`:auto` by default) builds ViteRuby test assets once before the e2e suite (RSpec `before(:suite)`, Minitest `before_setup`). Modes: `:auto` (build when ViteRuby is loaded), `:build` (require ViteRuby), `:warn`, `:skip`. Serialized with a flock so only one process compiles; ViteRuby skips compile when the watched-files digest is unchanged. Escape hatch: `SKIP_VITE_TEST_BUILD=1`.
15
+ - Install generator documents `ensure_vite_assets` in the helper template.
16
+
17
+ ### Fixed
18
+
19
+ - Inertia / vite_rails apps no longer silently run e2e against a stale `public/vite-test` bundle when specs are started without a manual `bin/vite build --mode=test`.
20
+
21
+ ## [0.7.1] - 2026-08-05
22
+
23
+ ### Fixed
24
+
25
+ - 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`
26
+ - `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
27
+ - 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`
28
+ - 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
29
+ - WEBrick test server is shut down after the RSpec/Minitest suite finishes
30
+ - `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
31
+
32
+ ### Added
33
+
34
+ - `E2E.config.navigation_wait_until` (default: `"domcontentloaded"`)
35
+ - `E2E.config.navigation_timeout` (default: `30` seconds)
36
+ - `E2E.stop_server!`
37
+
10
38
  ## [0.7.0] - 2026-07-15
11
39
 
12
40
  ### Changed
data/README.md CHANGED
@@ -334,6 +334,11 @@ 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
339
+ # Vite / Inertia: ensure public/vite-test is fresh before the suite
340
+ # :auto (default) | :build | :warn | :skip — or SKIP_VITE_TEST_BUILD=1
341
+ config.ensure_vite_assets = :auto
337
342
  config.flash_selectors = {
338
343
  any: "[role='alert'], [role='status'], .flash",
339
344
  notice: "[role='status'], .flash.notice",
@@ -342,6 +347,18 @@ E2E.configure do |config|
342
347
  end
343
348
  ```
344
349
 
350
+ ### Vite / Inertia assets
351
+
352
+ Apps using `vite_rails` with `config/vite.json` `test.autoBuild: false` serve prebuilt files from `public/vite-test`. If that bundle is older than your frontend, e2e fails with missing buttons/pages instead of a clear asset error.
353
+
354
+ With `ensure_vite_assets: :auto` (default), the gem calls `ViteRuby.commands.build` once before the suite. ViteRuby skips the real compile when nothing changed. A file lock keeps a single builder if several processes start together.
355
+
356
+ ```bash
357
+ # Prefer either of these when building manually / in CI:
358
+ bin/vite build --mode=test
359
+ RAILS_ENV=test bin/vite build
360
+ ```
361
+
345
362
  ### Multiple Browsers
346
363
 
347
364
  One of the key advantages of Playwright is true cross-browser testing. You can easily switch engines:
@@ -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.2)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -92,29 +92,29 @@ GEM
92
92
  benchmark (0.5.0)
93
93
  bigdecimal (4.1.2)
94
94
  builder (3.3.0)
95
- concurrent-ruby (1.3.7)
95
+ concurrent-ruby (1.3.8)
96
96
  crass (1.0.7)
97
97
  date (3.5.1)
98
98
  diff-lcs (1.6.2)
99
99
  drb (2.2.3)
100
- erb (6.0.4)
100
+ erb (6.0.7)
101
101
  erubi (1.13.1)
102
102
  globalid (1.4.0)
103
103
  activesupport (>= 6.1)
104
104
  i18n (1.15.2)
105
105
  concurrent-ruby (~> 1.0)
106
- io-console (0.8.2)
106
+ io-console (0.9.2)
107
107
  irb (1.18.0)
108
108
  pp (>= 0.6.0)
109
109
  prism (>= 1.3.0)
110
110
  rdoc (>= 4.0.0)
111
111
  reline (>= 0.4.2)
112
- json (2.21.1)
112
+ json (2.21.2)
113
113
  language_server-protocol (3.17.0.6)
114
114
  lefthook (2.1.10)
115
115
  lint_roller (1.1.0)
116
116
  logger (1.7.0)
117
- loofah (2.25.1)
117
+ loofah (2.25.2)
118
118
  crass (~> 1.0.2)
119
119
  nokogiri (>= 1.12.0)
120
120
  mail (2.9.1)
@@ -130,11 +130,12 @@ 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)
136
137
  mutex_m (0.3.0)
137
- net-imap (0.6.4.1)
138
+ net-imap (0.6.6)
138
139
  date
139
140
  net-protocol
140
141
  net-pop (0.1.2)
@@ -161,10 +162,10 @@ GEM
161
162
  nokogiri (1.19.4-x86_64-linux-musl)
162
163
  racc (~> 1.4)
163
164
  parallel (2.1.0)
164
- parser (3.3.11.1)
165
+ parser (3.3.12.0)
165
166
  ast (~> 2.4.1)
166
167
  racc
167
- playwright-ruby-client (1.61.0)
168
+ playwright-ruby-client (1.62.0)
168
169
  base64
169
170
  concurrent-ruby (>= 1.1.6)
170
171
  mime-types (>= 3.0)
@@ -173,7 +174,7 @@ GEM
173
174
  prettyprint (0.2.0)
174
175
  prism (1.9.0)
175
176
  racc (1.8.1)
176
- rack (2.2.23)
177
+ rack (2.2.24)
177
178
  rack-test (2.2.0)
178
179
  rack (>= 1.3)
179
180
  rackup (1.0.1)
@@ -197,8 +198,8 @@ GEM
197
198
  activesupport (>= 5.0.0)
198
199
  minitest
199
200
  nokogiri (>= 1.6)
200
- rails-html-sanitizer (1.7.0)
201
- loofah (~> 2.25)
201
+ rails-html-sanitizer (1.7.1)
202
+ loofah (~> 2.25, >= 2.25.2)
202
203
  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)
203
204
  railties (7.0.10)
204
205
  actionpack (= 7.0.10)
@@ -209,7 +210,7 @@ GEM
209
210
  zeitwerk (~> 2.5)
210
211
  rainbow (3.1.1)
211
212
  rake (13.4.2)
212
- rbs (4.0.3)
213
+ rbs (4.1.3)
213
214
  logger
214
215
  prism (>= 1.6.0)
215
216
  tsort
@@ -219,7 +220,7 @@ GEM
219
220
  rbs (>= 4.0.0)
220
221
  tsort
221
222
  regexp_parser (2.12.0)
222
- reline (0.6.3)
223
+ reline (0.7.0)
223
224
  io-console (~> 0.5)
224
225
  rspec (3.13.2)
225
226
  rspec-core (~> 3.13.0)
@@ -234,7 +235,7 @@ GEM
234
235
  diff-lcs (>= 1.2.0, < 2.0)
235
236
  rspec-support (~> 3.13.0)
236
237
  rspec-support (3.13.7)
237
- rubocop (1.87.0)
238
+ rubocop (1.88.2)
238
239
  json (~> 2.3)
239
240
  language_server-protocol (~> 3.17.0.2)
240
241
  lint_roller (~> 1.1.0)
@@ -258,11 +259,13 @@ GEM
258
259
  rubocop (~> 1.86, >= 1.86.2)
259
260
  ruby-progressbar (1.13.0)
260
261
  securerandom (0.4.1)
261
- simplecov (1.0.1)
262
- standard (1.55.0)
262
+ simplecov (1.1.1)
263
+ sqlite3 (1.7.3)
264
+ mini_portile2 (~> 2.8.0)
265
+ standard (1.56.0)
263
266
  language_server-protocol (~> 3.17.0.2)
264
267
  lint_roller (~> 1.0)
265
- rubocop (~> 1.87.0)
268
+ rubocop (~> 1.88.0)
266
269
  standard-custom (~> 1.0.0)
267
270
  standard-performance (~> 1.8)
268
271
  standard-custom (1.0.2)
@@ -284,7 +287,7 @@ GEM
284
287
  base64
285
288
  websocket-extensions (>= 0.1.0)
286
289
  websocket-extensions (0.1.5)
287
- zeitwerk (2.8.2)
290
+ zeitwerk (2.8.3)
288
291
 
289
292
  PLATFORMS
290
293
  aarch64-linux-gnu
@@ -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
@@ -328,33 +333,34 @@ CHECKSUMS
328
333
  benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
329
334
  bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
330
335
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
331
- concurrent-ruby (1.3.7) sha256=4412caec3a5ea2e5fdc52076724c071a81f2c0593d83b2ac8cbb8ca63b3151b0
336
+ concurrent-ruby (1.3.8) sha256=b2f1be836e968ccc78ccfce277ea79c72a88633f22306782c16ff23fb415d1e1
332
337
  crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
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)
337
- erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
341
+ e2e (0.7.2)
342
+ erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
338
343
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
339
344
  globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
340
345
  i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
341
- io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
346
+ io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08
342
347
  irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
343
- json (2.21.1) sha256=13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583
348
+ json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
344
349
  language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
345
350
  lefthook (2.1.10) sha256=cc9c06bd8ea689e8b8016eab9769e54d696d07951860c1c6d28e8f6812e61b65
346
351
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
347
352
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
348
- loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
353
+ loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918
349
354
  mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8
350
355
  marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f
351
356
  method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
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
- net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
363
+ net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
358
364
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
359
365
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
360
366
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
@@ -368,38 +374,39 @@ CHECKSUMS
368
374
  nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
369
375
  nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
370
376
  parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
371
- parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
372
- playwright-ruby-client (1.61.0) sha256=1f5c5f0307a2f6bd70b4fa797020a30eef5680caf8d5bd9ccc8d3937f6666e08
377
+ parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828
378
+ playwright-ruby-client (1.62.0) sha256=44eb6051ab7987f68a1288a7db7892403e59680116739987729c5fecfdb55715
373
379
  pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
374
380
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
375
381
  prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
376
382
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
377
- rack (2.2.23) sha256=a8fe9d7e07064770b8ec123663fded8a59ef7e2b6db5cda7173d45a5718ab69c
383
+ rack (2.2.24) sha256=ef16526a0d871c43753452338c754040a664c8b41bf0dd7450b85f7772adca5f
378
384
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
379
385
  rackup (1.0.1) sha256=ba86604a28989fe1043bff20d819b360944ca08156406812dca6742b24b3c249
380
386
  rails (7.0.10) sha256=866eb2c53d3184543fdb770d7ea308e4ee518063226a9e176229f3c7a9537c25
381
387
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
382
- rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
388
+ rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
383
389
  railties (7.0.10) sha256=d52a8b7a61ad941121a15a6596b2150e05c70b199c3afc9e9b73e63b3b1a57a7
384
390
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
385
391
  rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
386
- rbs (4.0.3) sha256=5a7bf70e2628549d9a1f44eae447b2cfe55968a9c60cfff52693a4bdcc020e14
392
+ rbs (4.1.3) sha256=0c4474a9751cdc14364bfad0b3e53678323bbdc2c31683b0445932867dbab8c4
387
393
  rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
388
394
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
389
- reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
395
+ reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d
390
396
  rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
391
397
  rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
392
398
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
393
399
  rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
394
400
  rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
395
- rubocop (1.87.0) sha256=b9d9ddf55116a513f8ef2c7ae660662d8b49301f118d3f0df61865b33a5c188d
401
+ rubocop (1.88.2) sha256=8def251c90cd955feb4daa3edc0ab56893250c4ce90ef81e6c80c03f9a939bbf
396
402
  rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
397
403
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
398
404
  rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
399
405
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
400
406
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
401
- simplecov (1.0.1) sha256=419d93c40484159d20b40e26e9a83cdd4c3afa2f3fd443bb8946c301cd658d75
402
- standard (1.55.0) sha256=8a8f2c3e681a4db3aafde1b301561b0f3d7c5f06c160167cb744a4d7baf0426e
407
+ simplecov (1.1.1) sha256=25825ef13f0b2e74694d769817dad6ab8e90131dabdaa666e522fea105521e78
408
+ sqlite3 (1.7.3) sha256=fa77f63c709548f46d4e9b6bb45cda52aa3881aa12cc85991132758e8968701c
409
+ standard (1.56.0) sha256=ae2af4d9669589162ac69ed5ef59dcf9f346d4afc81f7e62b84339310dfcb787
403
410
  standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
404
411
  standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
405
412
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
@@ -411,7 +418,7 @@ CHECKSUMS
411
418
  webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
412
419
  websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
413
420
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
414
- zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
421
+ zeitwerk (2.8.3) sha256=2c85125a8467ce069e20123d1e709a08955c9d29c118c25b46b7b7fafdbb92e5
415
422
 
416
423
  BUNDLED WITH
417
424
  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.2)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -99,30 +99,30 @@ 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)
112
112
  i18n (1.15.2)
113
113
  concurrent-ruby (~> 1.0)
114
- io-console (0.8.2)
114
+ io-console (0.9.2)
115
115
  irb (1.18.0)
116
116
  pp (>= 0.6.0)
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)
@@ -180,7 +180,7 @@ GEM
180
180
  prettyprint (0.2.0)
181
181
  prism (1.9.0)
182
182
  racc (1.8.1)
183
- rack (3.2.6)
183
+ rack (3.2.7)
184
184
  rack-session (2.1.2)
185
185
  base64 (>= 0.1.0)
186
186
  rack (>= 3.0.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.3)
225
225
  logger
226
226
  prism (>= 1.6.0)
227
227
  tsort
@@ -231,7 +231,7 @@ GEM
231
231
  rbs (>= 4.0.0)
232
232
  tsort
233
233
  regexp_parser (2.12.0)
234
- reline (0.6.3)
234
+ reline (0.7.0)
235
235
  io-console (~> 0.5)
236
236
  rspec (3.13.2)
237
237
  rspec-core (~> 3.13.0)
@@ -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.1.1)
274
+ sqlite3 (2.9.6-aarch64-linux-gnu)
275
+ sqlite3 (2.9.6-aarch64-linux-musl)
276
+ sqlite3 (2.9.6-arm-linux-gnu)
277
+ sqlite3 (2.9.6-arm-linux-musl)
278
+ sqlite3 (2.9.6-arm64-darwin)
279
+ sqlite3 (2.9.6-x86_64-darwin)
280
+ sqlite3 (2.9.6-x86_64-linux-gnu)
281
+ sqlite3 (2.9.6-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.2)
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
- io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
365
+ io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08
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,39 +391,47 @@ 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
389
399
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
390
- rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
400
+ rack (3.2.7) sha256=93e13e1c24f93556671d85d2d79fa228c3485815c50d7e2f265b5330c6528fb7
391
401
  rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
392
402
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
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.3) sha256=0c4474a9751cdc14364bfad0b3e53678323bbdc2c31683b0445932867dbab8c4
401
411
  rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
402
412
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
403
- reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
413
+ reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d
404
414
  rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
405
415
  rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
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.1.1) sha256=25825ef13f0b2e74694d769817dad6ab8e90131dabdaa666e522fea105521e78
426
+ sqlite3 (2.9.6-aarch64-linux-gnu) sha256=d8b1f7d23efd7abac285775a9566562fc7debfef79d594e3a20354406fb7907c
427
+ sqlite3 (2.9.6-aarch64-linux-musl) sha256=3579e1c98cdc7ff5c3722847bb63ed4e1efb7ff675cb5e1e48ef2d4da5fb3bc9
428
+ sqlite3 (2.9.6-arm-linux-gnu) sha256=33541500e3615da02afe54a9cc38b17a6985d3cf9d8b76d6d0a83002f114e7ec
429
+ sqlite3 (2.9.6-arm-linux-musl) sha256=c5490af48bb228fefa54314e9541375c3907e70f8109f3881b5ff97e1c93ae33
430
+ sqlite3 (2.9.6-arm64-darwin) sha256=849b5d7f795e60fe25076d62c72dd722beb45b3850b516ad978d60ee848ec15b
431
+ sqlite3 (2.9.6-x86_64-darwin) sha256=b5842fea77781c14da03fa7bc0feb82db03a69e135affcb6f5399cbd2797a5f3
432
+ sqlite3 (2.9.6-x86_64-linux-gnu) sha256=613188ce02f614126ddbc38c5e217ccffd6306d0dcd9adca9764547aa890a634
433
+ sqlite3 (2.9.6-x86_64-linux-musl) sha256=d493b11818a3573387a1d56e1ee8fa00da23a683a7a1cc063e7a0feeed843abf
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