e2e 0.5.0 → 0.6.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/CHANGELOG.md +14 -0
- data/README.md +21 -0
- data/config/rubocop.yml +0 -5
- data/gemfiles/rails_7.0.gemfile.lock +66 -65
- data/gemfiles/rails_7.1.gemfile.lock +68 -67
- data/gemfiles/rails_7.2.gemfile.lock +68 -67
- data/gemfiles/rails_8.0.gemfile.lock +134 -133
- data/gemfiles/rails_8.1.gemfile.lock +136 -135
- data/lib/e2e/dsl.rb +129 -0
- data/lib/e2e/version.rb +1 -1
- data/lib/e2e.rb +8 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51b39c5e2cdd6e83003f32838a8fd001b406d02bbe9dc78153eec9d319965bc2
|
|
4
|
+
data.tar.gz: 42603491b98256d6e24fc14bc2aec393631b870dc6f61ac299d75a13d11084fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68f40fd33e4957e362393cf6fb3eca4370e2f4ce04c741ce4667c0961963a72277f7f7dc12b7d2834f6878b70627d420c54e8e214a11bf10ce287d3c06bd13ca
|
|
7
|
+
data.tar.gz: fc3cebfbbf8a47fb3f3e42c3d5900a873eaad8c3ab324856827c8fcf56c9097ee6442459b0fe1fe7f8693fe1164df7e6ab0d4da64efe7517efc7d3e8978b9e0f
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.1] - 2026-04-15
|
|
11
|
+
|
|
12
|
+
### Removed
|
|
13
|
+
|
|
14
|
+
- `Capybara/SpecificFinders` RuboCop rule removed from `config/rubocop.yml` — the gem has no Capybara dependency
|
|
15
|
+
|
|
16
|
+
## [0.6.0] - 2026-02-13
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- DSL wait helpers: `wait_for`, `wait_for_text`, `wait_for_current_path`, and `wait_for_flash`
|
|
21
|
+
- Action helpers with built-in waiting: `click_button_and_wait_for_text`, `click_link_and_wait_for_text`, `click_button_and_wait_for_path`, `click_link_and_wait_for_path`, `click_button_and_wait_for_flash`, `click_link_and_wait_for_flash`
|
|
22
|
+
- Configurable flash selectors via `E2E.config.flash_selectors`
|
|
23
|
+
|
|
10
24
|
## [0.5.0] - 2026-02-09
|
|
11
25
|
|
|
12
26
|
### Added
|
data/README.md
CHANGED
|
@@ -258,6 +258,22 @@ E2E.wait_until(timeout: 10) do
|
|
|
258
258
|
end
|
|
259
259
|
```
|
|
260
260
|
|
|
261
|
+
Or use built-in DSL helpers that raise clear errors on timeout:
|
|
262
|
+
|
|
263
|
+
```ruby
|
|
264
|
+
wait_for { SomeModel.count > 0 }
|
|
265
|
+
wait_for_text("Saved")
|
|
266
|
+
wait_for_current_path("/dashboard")
|
|
267
|
+
wait_for_flash("Profile updated", type: :notice)
|
|
268
|
+
|
|
269
|
+
click_button_and_wait_for_text("Save", "Saved")
|
|
270
|
+
click_link_and_wait_for_text("Next", /done/i)
|
|
271
|
+
click_button_and_wait_for_path("Submit", "/dashboard")
|
|
272
|
+
click_link_and_wait_for_path("Continue", /checkout/)
|
|
273
|
+
click_button_and_wait_for_flash("Save", "Updated", type: :notice)
|
|
274
|
+
click_link_and_wait_for_flash("Delete", /failed/i, type: :alert)
|
|
275
|
+
```
|
|
276
|
+
|
|
261
277
|
### 🔓 Native Access (The Escape Hatch)
|
|
262
278
|
|
|
263
279
|
We believe you shouldn't be limited by the wrapper. You can access the underlying `Playwright::Page` object at any time using `.native`.
|
|
@@ -318,6 +334,11 @@ E2E.configure do |config|
|
|
|
318
334
|
config.headless = ENV.fetch("HEADLESS", "true") == "true"
|
|
319
335
|
config.app = Rails.application # Automatic Rack booting
|
|
320
336
|
config.wait_timeout = 5 # Seconds to wait in auto-waiting matchers (default: 5)
|
|
337
|
+
config.flash_selectors = {
|
|
338
|
+
any: "[role='alert'], [role='status'], .flash",
|
|
339
|
+
notice: "[role='status'], .flash.notice",
|
|
340
|
+
alert: "[role='alert'], .flash.alert"
|
|
341
|
+
}
|
|
321
342
|
end
|
|
322
343
|
```
|
|
323
344
|
|
data/config/rubocop.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
e2e (0.
|
|
4
|
+
e2e (0.6.1)
|
|
5
5
|
playwright-ruby-client (>= 1.40.0)
|
|
6
6
|
rack
|
|
7
7
|
rackup
|
|
@@ -90,7 +90,7 @@ GEM
|
|
|
90
90
|
ast (2.4.3)
|
|
91
91
|
base64 (0.3.0)
|
|
92
92
|
benchmark (0.5.0)
|
|
93
|
-
bigdecimal (4.
|
|
93
|
+
bigdecimal (4.1.1)
|
|
94
94
|
builder (3.3.0)
|
|
95
95
|
concurrent-ruby (1.3.6)
|
|
96
96
|
crass (1.0.6)
|
|
@@ -98,7 +98,7 @@ GEM
|
|
|
98
98
|
diff-lcs (1.6.2)
|
|
99
99
|
docile (1.4.1)
|
|
100
100
|
drb (2.2.3)
|
|
101
|
-
erb (6.0.
|
|
101
|
+
erb (6.0.2)
|
|
102
102
|
erubi (1.13.1)
|
|
103
103
|
globalid (1.3.0)
|
|
104
104
|
activesupport (>= 6.1)
|
|
@@ -110,12 +110,12 @@ GEM
|
|
|
110
110
|
prism (>= 1.3.0)
|
|
111
111
|
rdoc (>= 4.0.0)
|
|
112
112
|
reline (>= 0.4.2)
|
|
113
|
-
json (2.
|
|
113
|
+
json (2.19.3)
|
|
114
114
|
language_server-protocol (3.17.0.5)
|
|
115
|
-
lefthook (2.1.
|
|
115
|
+
lefthook (2.1.5)
|
|
116
116
|
lint_roller (1.1.0)
|
|
117
117
|
logger (1.7.0)
|
|
118
|
-
loofah (2.25.
|
|
118
|
+
loofah (2.25.1)
|
|
119
119
|
crass (~> 1.0.2)
|
|
120
120
|
nokogiri (>= 1.12.0)
|
|
121
121
|
mail (2.9.0)
|
|
@@ -129,12 +129,13 @@ GEM
|
|
|
129
129
|
mime-types (3.7.0)
|
|
130
130
|
logger
|
|
131
131
|
mime-types-data (~> 3.2025, >= 3.2025.0507)
|
|
132
|
-
mime-types-data (3.2026.
|
|
132
|
+
mime-types-data (3.2026.0414)
|
|
133
133
|
mini_mime (1.1.5)
|
|
134
|
-
minitest (6.0.
|
|
134
|
+
minitest (6.0.4)
|
|
135
|
+
drb (~> 2.0)
|
|
135
136
|
prism (~> 1.5)
|
|
136
137
|
mutex_m (0.3.0)
|
|
137
|
-
net-imap (0.6.
|
|
138
|
+
net-imap (0.6.3)
|
|
138
139
|
date
|
|
139
140
|
net-protocol
|
|
140
141
|
net-pop (0.1.2)
|
|
@@ -144,27 +145,27 @@ GEM
|
|
|
144
145
|
net-smtp (0.5.1)
|
|
145
146
|
net-protocol
|
|
146
147
|
nio4r (2.7.5)
|
|
147
|
-
nokogiri (1.19.
|
|
148
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
148
149
|
racc (~> 1.4)
|
|
149
|
-
nokogiri (1.19.
|
|
150
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
150
151
|
racc (~> 1.4)
|
|
151
|
-
nokogiri (1.19.
|
|
152
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
152
153
|
racc (~> 1.4)
|
|
153
|
-
nokogiri (1.19.
|
|
154
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
154
155
|
racc (~> 1.4)
|
|
155
|
-
nokogiri (1.19.
|
|
156
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
156
157
|
racc (~> 1.4)
|
|
157
|
-
nokogiri (1.19.
|
|
158
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
158
159
|
racc (~> 1.4)
|
|
159
|
-
nokogiri (1.19.
|
|
160
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
160
161
|
racc (~> 1.4)
|
|
161
|
-
nokogiri (1.19.
|
|
162
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
162
163
|
racc (~> 1.4)
|
|
163
|
-
parallel (1.
|
|
164
|
-
parser (3.3.
|
|
164
|
+
parallel (1.28.0)
|
|
165
|
+
parser (3.3.11.1)
|
|
165
166
|
ast (~> 2.4.1)
|
|
166
167
|
racc
|
|
167
|
-
playwright-ruby-client (1.
|
|
168
|
+
playwright-ruby-client (1.59.0)
|
|
168
169
|
base64
|
|
169
170
|
concurrent-ruby (>= 1.1.6)
|
|
170
171
|
mime-types (>= 3.0)
|
|
@@ -176,7 +177,7 @@ GEM
|
|
|
176
177
|
date
|
|
177
178
|
stringio
|
|
178
179
|
racc (1.8.1)
|
|
179
|
-
rack (2.2.
|
|
180
|
+
rack (2.2.23)
|
|
180
181
|
rack-test (2.2.0)
|
|
181
182
|
rack (>= 1.3)
|
|
182
183
|
rackup (1.0.1)
|
|
@@ -200,8 +201,8 @@ GEM
|
|
|
200
201
|
activesupport (>= 5.0.0)
|
|
201
202
|
minitest
|
|
202
203
|
nokogiri (>= 1.6)
|
|
203
|
-
rails-html-sanitizer (1.
|
|
204
|
-
loofah (~> 2.
|
|
204
|
+
rails-html-sanitizer (1.7.0)
|
|
205
|
+
loofah (~> 2.25)
|
|
205
206
|
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)
|
|
206
207
|
railties (7.0.10)
|
|
207
208
|
actionpack (= 7.0.10)
|
|
@@ -211,12 +212,12 @@ GEM
|
|
|
211
212
|
thor (~> 1.0)
|
|
212
213
|
zeitwerk (~> 2.5)
|
|
213
214
|
rainbow (3.1.1)
|
|
214
|
-
rake (13.
|
|
215
|
-
rdoc (7.
|
|
215
|
+
rake (13.4.1)
|
|
216
|
+
rdoc (7.2.0)
|
|
216
217
|
erb
|
|
217
218
|
psych (>= 4.0.0)
|
|
218
219
|
tsort
|
|
219
|
-
regexp_parser (2.
|
|
220
|
+
regexp_parser (2.12.0)
|
|
220
221
|
reline (0.6.3)
|
|
221
222
|
io-console (~> 0.5)
|
|
222
223
|
rspec (3.13.2)
|
|
@@ -228,11 +229,11 @@ GEM
|
|
|
228
229
|
rspec-expectations (3.13.5)
|
|
229
230
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
230
231
|
rspec-support (~> 3.13.0)
|
|
231
|
-
rspec-mocks (3.13.
|
|
232
|
+
rspec-mocks (3.13.8)
|
|
232
233
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
233
234
|
rspec-support (~> 3.13.0)
|
|
234
235
|
rspec-support (3.13.7)
|
|
235
|
-
rubocop (1.
|
|
236
|
+
rubocop (1.84.2)
|
|
236
237
|
json (~> 2.3)
|
|
237
238
|
language_server-protocol (~> 3.17.0.2)
|
|
238
239
|
lint_roller (~> 1.1.0)
|
|
@@ -240,10 +241,10 @@ GEM
|
|
|
240
241
|
parser (>= 3.3.0.2)
|
|
241
242
|
rainbow (>= 2.2.2, < 4.0)
|
|
242
243
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
243
|
-
rubocop-ast (>= 1.
|
|
244
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
244
245
|
ruby-progressbar (~> 1.7)
|
|
245
246
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
246
|
-
rubocop-ast (1.49.
|
|
247
|
+
rubocop-ast (1.49.1)
|
|
247
248
|
parser (>= 3.3.7.2)
|
|
248
249
|
prism (~> 1.7)
|
|
249
250
|
rubocop-performance (1.26.1)
|
|
@@ -261,10 +262,10 @@ GEM
|
|
|
261
262
|
simplecov_json_formatter (~> 0.1)
|
|
262
263
|
simplecov-html (0.13.2)
|
|
263
264
|
simplecov_json_formatter (0.1.4)
|
|
264
|
-
standard (1.
|
|
265
|
+
standard (1.54.0)
|
|
265
266
|
language_server-protocol (~> 3.17.0.2)
|
|
266
267
|
lint_roller (~> 1.0)
|
|
267
|
-
rubocop (~> 1.
|
|
268
|
+
rubocop (~> 1.84.0)
|
|
268
269
|
standard-custom (~> 1.0.0)
|
|
269
270
|
standard-performance (~> 1.8)
|
|
270
271
|
standard-custom (1.0.2)
|
|
@@ -275,7 +276,7 @@ GEM
|
|
|
275
276
|
rubocop-performance (~> 1.26.0)
|
|
276
277
|
stringio (3.2.0)
|
|
277
278
|
thor (1.5.0)
|
|
278
|
-
timeout (0.6.
|
|
279
|
+
timeout (0.6.1)
|
|
279
280
|
tsort (0.2.0)
|
|
280
281
|
tzinfo (2.0.6)
|
|
281
282
|
concurrent-ruby (~> 1.0)
|
|
@@ -287,7 +288,7 @@ GEM
|
|
|
287
288
|
base64
|
|
288
289
|
websocket-extensions (>= 0.1.0)
|
|
289
290
|
websocket-extensions (0.1.5)
|
|
290
|
-
zeitwerk (2.7.
|
|
291
|
+
zeitwerk (2.7.5)
|
|
291
292
|
|
|
292
293
|
PLATFORMS
|
|
293
294
|
aarch64-linux-gnu
|
|
@@ -329,7 +330,7 @@ CHECKSUMS
|
|
|
329
330
|
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
330
331
|
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
|
|
331
332
|
benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
|
|
332
|
-
bigdecimal (4.
|
|
333
|
+
bigdecimal (4.1.1) sha256=1c09efab961da45203c8316b0cdaec0ff391dfadb952dd459584b63ebf8054ca
|
|
333
334
|
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
|
334
335
|
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
|
|
335
336
|
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
|
|
@@ -337,67 +338,67 @@ CHECKSUMS
|
|
|
337
338
|
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
338
339
|
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
|
|
339
340
|
drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
|
|
340
|
-
e2e (0.
|
|
341
|
-
erb (6.0.
|
|
341
|
+
e2e (0.6.1)
|
|
342
|
+
erb (6.0.2) sha256=9fe6264d44f79422c87490a1558479bd0e7dad4dd0e317656e67ea3077b5242b
|
|
342
343
|
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
|
343
344
|
globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
|
|
344
345
|
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
|
|
345
346
|
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
346
347
|
irb (1.17.0) sha256=168c4ddb93d8a361a045c41d92b2952c7a118fa73f23fe14e55609eb7a863aae
|
|
347
|
-
json (2.
|
|
348
|
+
json (2.19.3) sha256=289b0bb53052a1fa8c34ab33cc750b659ba14a5c45f3fcf4b18762dc67c78646
|
|
348
349
|
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
349
|
-
lefthook (2.1.
|
|
350
|
+
lefthook (2.1.5) sha256=24bd602992e1ec36057bcc667bb74f23918ed05c715050a44e5a156f0b7a4312
|
|
350
351
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
351
352
|
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
352
|
-
loofah (2.25.
|
|
353
|
+
loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
|
|
353
354
|
mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
|
|
354
355
|
marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
|
|
355
356
|
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
|
356
357
|
mime-types (3.7.0) sha256=dcebf61c246f08e15a4de34e386ebe8233791e868564a470c3fe77c00eed5e56
|
|
357
|
-
mime-types-data (3.2026.
|
|
358
|
+
mime-types-data (3.2026.0414) sha256=461c4c655373a44bd6c5fe54bcf5b7776026ea96e808144b1ec465c4b99148cc
|
|
358
359
|
mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef
|
|
359
|
-
minitest (6.0.
|
|
360
|
+
minitest (6.0.4) sha256=df1304664589d40f46089247fdc451f866b0ce0d7cae1457a15fc1eb7d48dca1
|
|
360
361
|
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
|
361
|
-
net-imap (0.6.
|
|
362
|
+
net-imap (0.6.3) sha256=9bab75f876596d09ee7bf911a291da478e0cd6badc54dfb82874855ccc82f2ad
|
|
362
363
|
net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
|
|
363
364
|
net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
|
|
364
365
|
net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
|
|
365
366
|
nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
|
|
366
|
-
nokogiri (1.19.
|
|
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
|
-
parallel (1.
|
|
375
|
-
parser (3.3.
|
|
376
|
-
playwright-ruby-client (1.
|
|
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
|
|
376
|
+
parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
|
|
377
|
+
playwright-ruby-client (1.59.0) sha256=b9e66233ed7b83e917980badc27ecd233e244503c74772a3854dbd5d41438c21
|
|
377
378
|
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
|
378
379
|
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
|
379
380
|
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
380
381
|
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
381
382
|
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
382
|
-
rack (2.2.
|
|
383
|
+
rack (2.2.23) sha256=a8fe9d7e07064770b8ec123663fded8a59ef7e2b6db5cda7173d45a5718ab69c
|
|
383
384
|
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
|
|
384
385
|
rackup (1.0.1) sha256=ba86604a28989fe1043bff20d819b360944ca08156406812dca6742b24b3c249
|
|
385
386
|
rails (7.0.10) sha256=866eb2c53d3184543fdb770d7ea308e4ee518063226a9e176229f3c7a9537c25
|
|
386
387
|
rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
|
|
387
|
-
rails-html-sanitizer (1.
|
|
388
|
+
rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
|
|
388
389
|
railties (7.0.10) sha256=d52a8b7a61ad941121a15a6596b2150e05c70b199c3afc9e9b73e63b3b1a57a7
|
|
389
390
|
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
390
|
-
rake (13.
|
|
391
|
-
rdoc (7.
|
|
392
|
-
regexp_parser (2.
|
|
391
|
+
rake (13.4.1) sha256=b4e81bd6a748308a6799619d824ec6a23cd1acd07d9ec41e5f2ebfb2294447c8
|
|
392
|
+
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
393
|
+
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
393
394
|
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
394
395
|
rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
|
|
395
396
|
rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
|
|
396
397
|
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
397
|
-
rspec-mocks (3.13.
|
|
398
|
+
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
398
399
|
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
399
|
-
rubocop (1.
|
|
400
|
-
rubocop-ast (1.49.
|
|
400
|
+
rubocop (1.84.2) sha256=5692cea54168f3dc8cb79a6fe95c5424b7ea893c707ad7a4307b0585e88dbf5f
|
|
401
|
+
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
401
402
|
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
|
402
403
|
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
403
404
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
@@ -405,12 +406,12 @@ CHECKSUMS
|
|
|
405
406
|
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
|
|
406
407
|
simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
|
|
407
408
|
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
|
|
408
|
-
standard (1.
|
|
409
|
+
standard (1.54.0) sha256=7a4b08f83d9893083c8f03bc486f0feeb6a84d48233b40829c03ef4767ea0100
|
|
409
410
|
standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
|
|
410
411
|
standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
|
|
411
412
|
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
412
413
|
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
|
|
413
|
-
timeout (0.6.
|
|
414
|
+
timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
|
|
414
415
|
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
415
416
|
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
|
416
417
|
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
|
|
@@ -418,7 +419,7 @@ CHECKSUMS
|
|
|
418
419
|
webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
|
|
419
420
|
websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
|
|
420
421
|
websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
|
|
421
|
-
zeitwerk (2.7.
|
|
422
|
+
zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
|
|
422
423
|
|
|
423
424
|
BUNDLED WITH
|
|
424
425
|
4.0.5
|