e2e 0.6.1 → 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: 51b39c5e2cdd6e83003f32838a8fd001b406d02bbe9dc78153eec9d319965bc2
4
- data.tar.gz: 42603491b98256d6e24fc14bc2aec393631b870dc6f61ac299d75a13d11084fc
3
+ metadata.gz: e58fc07c8356119f92b3c2be2849227d2be09a4f0e0e6410916b1672b60d50d9
4
+ data.tar.gz: 0bfe39f3c8bca7b434dae7ca3922ffe08db1bf6fe351a5cf6ed1759a11d688bb
5
5
  SHA512:
6
- metadata.gz: 68f40fd33e4957e362393cf6fb3eca4370e2f4ce04c741ce4667c0961963a72277f7f7dc12b7d2834f6878b70627d420c54e8e214a11bf10ce287d3c06bd13ca
7
- data.tar.gz: fc3cebfbbf8a47fb3f3e42c3d5900a873eaad8c3ab324856827c8fcf56c9097ee6442459b0fe1fe7f8693fe1164df7e6ab0d4da64efe7517efc7d3e8978b9e0f
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,29 @@ 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
+
27
+ ## [0.7.0] - 2026-07-15
28
+
29
+ ### Changed
30
+
31
+ - Minimum required Ruby version raised from 3.2 to 3.3
32
+
10
33
  ## [0.6.1] - 2026-04-15
11
34
 
12
35
  ### Removed
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.6.1)
4
+ e2e (0.7.1)
5
5
  playwright-ruby-client (>= 1.40.0)
6
6
  rack
7
7
  rackup
@@ -90,52 +90,52 @@ GEM
90
90
  ast (2.4.3)
91
91
  base64 (0.3.0)
92
92
  benchmark (0.5.0)
93
- bigdecimal (4.1.1)
93
+ bigdecimal (4.1.2)
94
94
  builder (3.3.0)
95
- concurrent-ruby (1.3.6)
96
- crass (1.0.6)
95
+ concurrent-ruby (1.3.7)
96
+ crass (1.0.7)
97
97
  date (3.5.1)
98
98
  diff-lcs (1.6.2)
99
- docile (1.4.1)
100
99
  drb (2.2.3)
101
- erb (6.0.2)
100
+ erb (6.0.4)
102
101
  erubi (1.13.1)
103
- globalid (1.3.0)
102
+ globalid (1.4.0)
104
103
  activesupport (>= 6.1)
105
- i18n (1.14.8)
104
+ i18n (1.15.2)
106
105
  concurrent-ruby (~> 1.0)
107
106
  io-console (0.8.2)
108
- irb (1.17.0)
107
+ irb (1.18.0)
109
108
  pp (>= 0.6.0)
110
109
  prism (>= 1.3.0)
111
110
  rdoc (>= 4.0.0)
112
111
  reline (>= 0.4.2)
113
- json (2.19.3)
114
- language_server-protocol (3.17.0.5)
115
- lefthook (2.1.5)
112
+ json (2.21.1)
113
+ language_server-protocol (3.17.0.6)
114
+ lefthook (2.1.10)
116
115
  lint_roller (1.1.0)
117
116
  logger (1.7.0)
118
117
  loofah (2.25.1)
119
118
  crass (~> 1.0.2)
120
119
  nokogiri (>= 1.12.0)
121
- mail (2.9.0)
120
+ mail (2.9.1)
122
121
  logger
123
122
  mini_mime (>= 0.1.1)
124
123
  net-imap
125
124
  net-pop
126
125
  net-smtp
127
- marcel (1.1.0)
126
+ marcel (1.2.1)
128
127
  method_source (1.1.0)
129
128
  mime-types (3.7.0)
130
129
  logger
131
130
  mime-types-data (~> 3.2025, >= 3.2025.0507)
132
- mime-types-data (3.2026.0414)
131
+ mime-types-data (3.2026.0701)
133
132
  mini_mime (1.1.5)
134
- minitest (6.0.4)
133
+ mini_portile2 (2.8.9)
134
+ minitest (6.0.6)
135
135
  drb (~> 2.0)
136
136
  prism (~> 1.5)
137
137
  mutex_m (0.3.0)
138
- net-imap (0.6.3)
138
+ net-imap (0.6.4.1)
139
139
  date
140
140
  net-protocol
141
141
  net-pop (0.1.2)
@@ -145,37 +145,34 @@ GEM
145
145
  net-smtp (0.5.1)
146
146
  net-protocol
147
147
  nio4r (2.7.5)
148
- nokogiri (1.19.2-aarch64-linux-gnu)
148
+ nokogiri (1.19.4-aarch64-linux-gnu)
149
149
  racc (~> 1.4)
150
- nokogiri (1.19.2-aarch64-linux-musl)
150
+ nokogiri (1.19.4-aarch64-linux-musl)
151
151
  racc (~> 1.4)
152
- nokogiri (1.19.2-arm-linux-gnu)
152
+ nokogiri (1.19.4-arm-linux-gnu)
153
153
  racc (~> 1.4)
154
- nokogiri (1.19.2-arm-linux-musl)
154
+ nokogiri (1.19.4-arm-linux-musl)
155
155
  racc (~> 1.4)
156
- nokogiri (1.19.2-arm64-darwin)
156
+ nokogiri (1.19.4-arm64-darwin)
157
157
  racc (~> 1.4)
158
- nokogiri (1.19.2-x86_64-darwin)
158
+ nokogiri (1.19.4-x86_64-darwin)
159
159
  racc (~> 1.4)
160
- nokogiri (1.19.2-x86_64-linux-gnu)
160
+ nokogiri (1.19.4-x86_64-linux-gnu)
161
161
  racc (~> 1.4)
162
- nokogiri (1.19.2-x86_64-linux-musl)
162
+ nokogiri (1.19.4-x86_64-linux-musl)
163
163
  racc (~> 1.4)
164
- parallel (1.28.0)
164
+ parallel (2.1.0)
165
165
  parser (3.3.11.1)
166
166
  ast (~> 2.4.1)
167
167
  racc
168
- playwright-ruby-client (1.59.0)
168
+ playwright-ruby-client (1.61.0)
169
169
  base64
170
170
  concurrent-ruby (>= 1.1.6)
171
171
  mime-types (>= 3.0)
172
- pp (0.6.3)
172
+ pp (0.6.4)
173
173
  prettyprint
174
174
  prettyprint (0.2.0)
175
175
  prism (1.9.0)
176
- psych (5.3.1)
177
- date
178
- stringio
179
176
  racc (1.8.1)
180
177
  rack (2.2.23)
181
178
  rack-test (2.2.0)
@@ -212,10 +209,15 @@ GEM
212
209
  thor (~> 1.0)
213
210
  zeitwerk (~> 2.5)
214
211
  rainbow (3.1.1)
215
- rake (13.4.1)
216
- rdoc (7.2.0)
212
+ rake (13.4.2)
213
+ rbs (4.0.3)
214
+ logger
215
+ prism (>= 1.6.0)
216
+ tsort
217
+ rdoc (8.0.0)
217
218
  erb
218
- psych (>= 4.0.0)
219
+ prism (>= 1.6.0)
220
+ rbs (>= 4.0.0)
219
221
  tsort
220
222
  regexp_parser (2.12.0)
221
223
  reline (0.6.3)
@@ -233,39 +235,37 @@ GEM
233
235
  diff-lcs (>= 1.2.0, < 2.0)
234
236
  rspec-support (~> 3.13.0)
235
237
  rspec-support (3.13.7)
236
- rubocop (1.84.2)
238
+ rubocop (1.87.0)
237
239
  json (~> 2.3)
238
240
  language_server-protocol (~> 3.17.0.2)
239
241
  lint_roller (~> 1.1.0)
240
- parallel (~> 1.10)
242
+ parallel (>= 1.10)
241
243
  parser (>= 3.3.0.2)
242
244
  rainbow (>= 2.2.2, < 4.0)
243
245
  regexp_parser (>= 2.9.3, < 3.0)
244
246
  rubocop-ast (>= 1.49.0, < 2.0)
245
247
  ruby-progressbar (~> 1.7)
246
248
  unicode-display_width (>= 2.4.0, < 4.0)
247
- rubocop-ast (1.49.1)
249
+ rubocop-ast (1.50.0)
248
250
  parser (>= 3.3.7.2)
249
251
  prism (~> 1.7)
250
252
  rubocop-performance (1.26.1)
251
253
  lint_roller (~> 1.1)
252
254
  rubocop (>= 1.75.0, < 2.0)
253
255
  rubocop-ast (>= 1.47.1, < 2.0)
254
- rubocop-rspec (3.9.0)
256
+ rubocop-rspec (3.10.2)
255
257
  lint_roller (~> 1.1)
256
- rubocop (~> 1.81)
258
+ regexp_parser (>= 2.0)
259
+ rubocop (~> 1.86, >= 1.86.2)
257
260
  ruby-progressbar (1.13.0)
258
261
  securerandom (0.4.1)
259
- simplecov (0.22.0)
260
- docile (~> 1.1)
261
- simplecov-html (~> 0.11)
262
- simplecov_json_formatter (~> 0.1)
263
- simplecov-html (0.13.2)
264
- simplecov_json_formatter (0.1.4)
265
- standard (1.54.0)
262
+ simplecov (1.0.1)
263
+ sqlite3 (1.7.3)
264
+ mini_portile2 (~> 2.8.0)
265
+ standard (1.55.0)
266
266
  language_server-protocol (~> 3.17.0.2)
267
267
  lint_roller (~> 1.0)
268
- rubocop (~> 1.84.0)
268
+ rubocop (~> 1.87.0)
269
269
  standard-custom (~> 1.0.0)
270
270
  standard-performance (~> 1.8)
271
271
  standard-custom (1.0.2)
@@ -274,7 +274,6 @@ GEM
274
274
  standard-performance (1.9.0)
275
275
  lint_roller (~> 1.1)
276
276
  rubocop-performance (~> 1.26.0)
277
- stringio (3.2.0)
278
277
  thor (1.5.0)
279
278
  timeout (0.6.1)
280
279
  tsort (0.2.0)
@@ -284,11 +283,11 @@ GEM
284
283
  unicode-emoji (~> 4.1)
285
284
  unicode-emoji (4.2.0)
286
285
  webrick (1.9.2)
287
- websocket-driver (0.8.0)
286
+ websocket-driver (0.8.2)
288
287
  base64
289
288
  websocket-extensions (>= 0.1.0)
290
289
  websocket-extensions (0.1.5)
291
- zeitwerk (2.7.5)
290
+ zeitwerk (2.8.2)
292
291
 
293
292
  PLATFORMS
294
293
  aarch64-linux-gnu
@@ -301,6 +300,7 @@ PLATFORMS
301
300
  x86_64-linux-musl
302
301
 
303
302
  DEPENDENCIES
303
+ activerecord
304
304
  appraisal
305
305
  e2e!
306
306
  irb
@@ -312,6 +312,7 @@ DEPENDENCIES
312
312
  rubocop-performance
313
313
  rubocop-rspec
314
314
  simplecov
315
+ sqlite3 (~> 1.4)
315
316
  standard
316
317
 
317
318
  CHECKSUMS
@@ -330,55 +331,54 @@ CHECKSUMS
330
331
  ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
331
332
  base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
332
333
  benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
333
- bigdecimal (4.1.1) sha256=1c09efab961da45203c8316b0cdaec0ff391dfadb952dd459584b63ebf8054ca
334
+ bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
334
335
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
335
- concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
336
- crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
336
+ concurrent-ruby (1.3.7) sha256=4412caec3a5ea2e5fdc52076724c071a81f2c0593d83b2ac8cbb8ca63b3151b0
337
+ crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295
337
338
  date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
338
339
  diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
339
- docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
340
340
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
341
- e2e (0.6.1)
342
- erb (6.0.2) sha256=9fe6264d44f79422c87490a1558479bd0e7dad4dd0e317656e67ea3077b5242b
341
+ e2e (0.7.1)
342
+ erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
343
343
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
344
- globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
345
- i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
344
+ globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
345
+ i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
346
346
  io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
347
- irb (1.17.0) sha256=168c4ddb93d8a361a045c41d92b2952c7a118fa73f23fe14e55609eb7a863aae
348
- json (2.19.3) sha256=289b0bb53052a1fa8c34ab33cc750b659ba14a5c45f3fcf4b18762dc67c78646
349
- language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
350
- lefthook (2.1.5) sha256=24bd602992e1ec36057bcc667bb74f23918ed05c715050a44e5a156f0b7a4312
347
+ irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
348
+ json (2.21.1) sha256=13a43df75d95641443f5702dff350f237164a9d811ff0f2c2800d4d980220583
349
+ language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0
350
+ lefthook (2.1.10) sha256=cc9c06bd8ea689e8b8016eab9769e54d696d07951860c1c6d28e8f6812e61b65
351
351
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
352
352
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
353
353
  loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
354
- mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
355
- marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
354
+ mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8
355
+ marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f
356
356
  method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
357
357
  mime-types (3.7.0) sha256=dcebf61c246f08e15a4de34e386ebe8233791e868564a470c3fe77c00eed5e56
358
- mime-types-data (3.2026.0414) sha256=461c4c655373a44bd6c5fe54bcf5b7776026ea96e808144b1ec465c4b99148cc
358
+ mime-types-data (3.2026.0701) sha256=cd8811e1fb89d836499ba0582368a10ee74cef929ba956d1d5ddca045e6a730f
359
359
  mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
360
- minitest (6.0.4) sha256=df1304664589d40f46089247fdc451f866b0ce0d7cae1457a15fc1eb7d48dca1
360
+ mini_portile2 (2.8.9) sha256=0cd7c7f824e010c072e33f68bc02d85a00aeb6fce05bb4819c03dfd3c140c289
361
+ minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1
361
362
  mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
362
- net-imap (0.6.3) sha256=9bab75f876596d09ee7bf911a291da478e0cd6badc54dfb82874855ccc82f2ad
363
+ net-imap (0.6.4.1) sha256=29f0360d75a7efd3539f16ac1957dea5c0a51ddeceb348db4553c3120914ea0d
363
364
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
364
365
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
365
366
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
366
367
  nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
367
- nokogiri (1.19.2-aarch64-linux-gnu) sha256=c34d5c8208025587554608e98fd88ab125b29c80f9352b821964e9a5d5cfbd19
368
- nokogiri (1.19.2-aarch64-linux-musl) sha256=7f6b4b0202d507326841a4f790294bf75098aef50c7173443812e3ac5cb06515
369
- nokogiri (1.19.2-arm-linux-gnu) sha256=b7fa1139016f3dc850bda1260988f0d749934a939d04ef2da13bec060d7d5081
370
- nokogiri (1.19.2-arm-linux-musl) sha256=61114d44f6742ff72194a1b3020967201e2eb982814778d130f6471c11f9828c
371
- nokogiri (1.19.2-arm64-darwin) sha256=58d8ea2e31a967b843b70487a44c14c8ba1866daa1b9da9be9dbdf1b43dee205
372
- nokogiri (1.19.2-x86_64-darwin) sha256=7d9af11fda72dfaa2961d8c4d5380ca0b51bc389dc5f8d4b859b9644f195e7a4
373
- nokogiri (1.19.2-x86_64-linux-gnu) sha256=fa8feca882b73e871a9845f3817a72e9734c8e974bdc4fbad6e4bc6e8076b94f
374
- nokogiri (1.19.2-x86_64-linux-musl) sha256=93128448e61a9383a30baef041bf1f5817e22f297a1d400521e90294445069a8
375
- parallel (1.28.0) sha256=33e6de1484baf2524792d178b0913fc8eb94c628d6cfe45599ad4458c638c970
368
+ nokogiri (1.19.4-aarch64-linux-gnu) sha256=1269fb644a6de405057a53dd5c762b1209b43ca7424f839454d3dbc677c31a8f
369
+ nokogiri (1.19.4-aarch64-linux-musl) sha256=35c65b9ce72b3bb03207bdbe7067915019dc18c1b9b59139684bd6690fdd01af
370
+ nokogiri (1.19.4-arm-linux-gnu) sha256=a301313e38bb065d68239e79734bcd6f56fb6efaacebde29e9abf2a4735340ca
371
+ nokogiri (1.19.4-arm-linux-musl) sha256=588923c101bcfa78869734d247d25b598674323e7f22474fc468f6e5647311eb
372
+ nokogiri (1.19.4-arm64-darwin) sha256=a46db9853286e6597b36ebc6953817d15acf3a299583eb3f89fdc6f91dd63527
373
+ nokogiri (1.19.4-x86_64-darwin) sha256=7fd17057d3e1f00e9954a74b3cd76595d3d4a5ef233b7ed9599047c204f70551
374
+ nokogiri (1.19.4-x86_64-linux-gnu) sha256=379fae440b28915e3f19d752ce2dcf8465ed2b2fbefd2a7ca0dd497bc981a06a
375
+ nokogiri (1.19.4-x86_64-linux-musl) sha256=17dfb7c1fa194ae02fbf7c51a7afc8d278045ab3fdacfd86f91d02d7b274470b
376
+ parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
376
377
  parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
377
- playwright-ruby-client (1.59.0) sha256=b9e66233ed7b83e917980badc27ecd233e244503c74772a3854dbd5d41438c21
378
- pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
378
+ playwright-ruby-client (1.61.0) sha256=1f5c5f0307a2f6bd70b4fa797020a30eef5680caf8d5bd9ccc8d3937f6666e08
379
+ pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570
379
380
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
380
381
  prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
381
- psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
382
382
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
383
383
  rack (2.2.23) sha256=a8fe9d7e07064770b8ec123663fded8a59ef7e2b6db5cda7173d45a5718ab69c
384
384
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
@@ -388,8 +388,9 @@ CHECKSUMS
388
388
  rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
389
389
  railties (7.0.10) sha256=d52a8b7a61ad941121a15a6596b2150e05c70b199c3afc9e9b73e63b3b1a57a7
390
390
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
391
- rake (13.4.1) sha256=b4e81bd6a748308a6799619d824ec6a23cd1acd07d9ec41e5f2ebfb2294447c8
392
- rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
391
+ rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
392
+ rbs (4.0.3) sha256=5a7bf70e2628549d9a1f44eae447b2cfe55968a9c60cfff52693a4bdcc020e14
393
+ rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
393
394
  regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
394
395
  reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
395
396
  rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
@@ -397,19 +398,17 @@ CHECKSUMS
397
398
  rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
398
399
  rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
399
400
  rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
400
- rubocop (1.84.2) sha256=5692cea54168f3dc8cb79a6fe95c5424b7ea893c707ad7a4307b0585e88dbf5f
401
- rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
401
+ rubocop (1.87.0) sha256=b9d9ddf55116a513f8ef2c7ae660662d8b49301f118d3f0df61865b33a5c188d
402
+ rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db
402
403
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
403
- rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
404
+ rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
404
405
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
405
406
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
406
- simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
407
- simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
408
- simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
409
- standard (1.54.0) sha256=7a4b08f83d9893083c8f03bc486f0feeb6a84d48233b40829c03ef4767ea0100
407
+ simplecov (1.0.1) sha256=419d93c40484159d20b40e26e9a83cdd4c3afa2f3fd443bb8946c301cd658d75
408
+ sqlite3 (1.7.3) sha256=fa77f63c709548f46d4e9b6bb45cda52aa3881aa12cc85991132758e8968701c
409
+ standard (1.55.0) sha256=8a8f2c3e681a4db3aafde1b301561b0f3d7c5f06c160167cb744a4d7baf0426e
410
410
  standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
411
411
  standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
412
- stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
413
412
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
414
413
  timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
415
414
  tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
@@ -417,9 +416,9 @@ CHECKSUMS
417
416
  unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
418
417
  unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
419
418
  webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
420
- websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
419
+ websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
421
420
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
422
- zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
421
+ zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
423
422
 
424
423
  BUNDLED WITH
425
424
  4.0.5