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 +4 -4
- data/.ruby-version +1 -0
- data/Appraisals +3 -0
- data/CHANGELOG.md +23 -0
- data/README.md +2 -0
- data/gemfiles/rails_7.0.gemfile +1 -0
- data/gemfiles/rails_7.0.gemfile.lock +90 -91
- data/gemfiles/rails_7.1.gemfile.lock +110 -100
- data/gemfiles/rails_7.2.gemfile.lock +110 -100
- data/gemfiles/rails_8.0.gemfile.lock +174 -164
- data/gemfiles/rails_8.1.gemfile.lock +176 -166
- data/lib/e2e/drivers/playwright.rb +34 -10
- data/lib/e2e/minitest.rb +1 -0
- data/lib/e2e/rails.rb +71 -10
- data/lib/e2e/rspec.rb +1 -0
- data/lib/e2e/server.rb +28 -3
- data/lib/e2e/version.rb +1 -1
- data/lib/e2e.rb +11 -1
- data/mise.toml +14 -0
- metadata +33 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e58fc07c8356119f92b3c2be2849227d2be09a4f0e0e6410916b1672b60d50d9
|
|
4
|
+
data.tar.gz: 0bfe39f3c8bca7b434dae7ca3922ffe08db1bf6fe351a5cf6ed1759a11d688bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1574bb81c3de068d48e255e5c9b4515ce5fac93ed07e2238599c597eaa0b6dadd3e10aee0bad5f5ff4efe45dd6582f249e39f2b7e78e7f4cb95974644a6b2f58
|
|
7
|
+
data.tar.gz: 54a2aba91a6e02d3ad3bd628c7dc8f99abbba91930bf83285bd259873f0e89eb2d6f9b41bceda895982eb5826051fc0114ae7e0a719518e4fff8bff22942f579
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.0.6
|
data/Appraisals
CHANGED
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",
|
data/gemfiles/rails_7.0.gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
e2e (0.
|
|
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.
|
|
93
|
+
bigdecimal (4.1.2)
|
|
94
94
|
builder (3.3.0)
|
|
95
|
-
concurrent-ruby (1.3.
|
|
96
|
-
crass (1.0.
|
|
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.
|
|
100
|
+
erb (6.0.4)
|
|
102
101
|
erubi (1.13.1)
|
|
103
|
-
globalid (1.
|
|
102
|
+
globalid (1.4.0)
|
|
104
103
|
activesupport (>= 6.1)
|
|
105
|
-
i18n (1.
|
|
104
|
+
i18n (1.15.2)
|
|
106
105
|
concurrent-ruby (~> 1.0)
|
|
107
106
|
io-console (0.8.2)
|
|
108
|
-
irb (1.
|
|
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.
|
|
114
|
-
language_server-protocol (3.17.0.
|
|
115
|
-
lefthook (2.1.
|
|
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.
|
|
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
|
|
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.
|
|
131
|
+
mime-types-data (3.2026.0701)
|
|
133
132
|
mini_mime (1.1.5)
|
|
134
|
-
|
|
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.
|
|
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.
|
|
148
|
+
nokogiri (1.19.4-aarch64-linux-gnu)
|
|
149
149
|
racc (~> 1.4)
|
|
150
|
-
nokogiri (1.19.
|
|
150
|
+
nokogiri (1.19.4-aarch64-linux-musl)
|
|
151
151
|
racc (~> 1.4)
|
|
152
|
-
nokogiri (1.19.
|
|
152
|
+
nokogiri (1.19.4-arm-linux-gnu)
|
|
153
153
|
racc (~> 1.4)
|
|
154
|
-
nokogiri (1.19.
|
|
154
|
+
nokogiri (1.19.4-arm-linux-musl)
|
|
155
155
|
racc (~> 1.4)
|
|
156
|
-
nokogiri (1.19.
|
|
156
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
157
157
|
racc (~> 1.4)
|
|
158
|
-
nokogiri (1.19.
|
|
158
|
+
nokogiri (1.19.4-x86_64-darwin)
|
|
159
159
|
racc (~> 1.4)
|
|
160
|
-
nokogiri (1.19.
|
|
160
|
+
nokogiri (1.19.4-x86_64-linux-gnu)
|
|
161
161
|
racc (~> 1.4)
|
|
162
|
-
nokogiri (1.19.
|
|
162
|
+
nokogiri (1.19.4-x86_64-linux-musl)
|
|
163
163
|
racc (~> 1.4)
|
|
164
|
-
parallel (1.
|
|
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.
|
|
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.
|
|
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.
|
|
216
|
-
|
|
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
|
-
|
|
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.
|
|
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 (
|
|
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.
|
|
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.
|
|
256
|
+
rubocop-rspec (3.10.2)
|
|
255
257
|
lint_roller (~> 1.1)
|
|
256
|
-
|
|
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.
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
334
|
+
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
|
|
334
335
|
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
|
335
|
-
concurrent-ruby (1.3.
|
|
336
|
-
crass (1.0.
|
|
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.
|
|
342
|
-
erb (6.0.
|
|
341
|
+
e2e (0.7.1)
|
|
342
|
+
erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
|
|
343
343
|
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
|
344
|
-
globalid (1.
|
|
345
|
-
i18n (1.
|
|
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.
|
|
348
|
-
json (2.
|
|
349
|
-
language_server-protocol (3.17.0.
|
|
350
|
-
lefthook (2.1.
|
|
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.
|
|
355
|
-
marcel (1.1
|
|
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.
|
|
358
|
+
mime-types-data (3.2026.0701) sha256=cd8811e1fb89d836499ba0582368a10ee74cef929ba956d1d5ddca045e6a730f
|
|
359
359
|
mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
|
|
360
|
-
|
|
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.
|
|
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.
|
|
368
|
-
nokogiri (1.19.
|
|
369
|
-
nokogiri (1.19.
|
|
370
|
-
nokogiri (1.19.
|
|
371
|
-
nokogiri (1.19.
|
|
372
|
-
nokogiri (1.19.
|
|
373
|
-
nokogiri (1.19.
|
|
374
|
-
nokogiri (1.19.
|
|
375
|
-
parallel (1.
|
|
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.
|
|
378
|
-
pp (0.6.
|
|
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.
|
|
392
|
-
|
|
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.
|
|
401
|
-
rubocop-ast (1.
|
|
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.
|
|
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.
|
|
407
|
-
|
|
408
|
-
|
|
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.
|
|
419
|
+
websocket-driver (0.8.2) sha256=97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146
|
|
421
420
|
websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
|
|
422
|
-
zeitwerk (2.
|
|
421
|
+
zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
|
|
423
422
|
|
|
424
423
|
BUNDLED WITH
|
|
425
424
|
4.0.5
|