phlexible 3.3.0 → 3.4.0

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: 4752fe1e276560bb8cca4c2115aabb11c36958588672cc5ec36d20bd3599d82e
4
- data.tar.gz: 854eba7f90f061528db3de98a120bc457a679421103ef84eced0373457b1e3f1
3
+ metadata.gz: 7d77a1775f2cf5e96455ca326a6589a00bb0400f5bf4f01f0af1268c01579e0b
4
+ data.tar.gz: b68f67d1bcc7c913177efdb1aec44fe866cde16d30fdc6215dc9760cb7ac1c3d
5
5
  SHA512:
6
- metadata.gz: 1ce11414a8a6a792e6a50b20ded0135037dc946267ee802f4ae9f9bb031b22a3689b5eadf821029ad4d29f1ce4599e6d9ffa96ac1b3c4d15285df7f1c37415f9
7
- data.tar.gz: 3a825528fc039dffedbbe35a588c52bd9e3c5cdbd336e0e23793d316d1949cbad2dd090a69fb36fe911b57f2b69e46983d17c3022c10177aebc8704975c49f3a
6
+ metadata.gz: 83a9a3082006f0ec7fcaa46fd7d492a09928c07419639ff15da929b3fb27bec5ec0576c6e2a20b3e29666899820882029b798df9d88ed6865bacc77fd80a2cf6
7
+ data.tar.gz: b615b0e6f37147e44868398f6e5180fa2f095b39300ad9f8d97d0e1f58e5981ceae1df444d6b446885c3d06f1387a1ce31b1c0522dd6e50dce149d5b445f0bc1
data/README.md CHANGED
@@ -8,6 +8,7 @@ A bunch of helpers and goodies intended to make life with [Phlex](https://phlex.
8
8
  - [Usage](#usage)
9
9
  - [AliasView](#aliasview)
10
10
  - [Callbacks](#callbacks)
11
+ - [ElementVariants](#elementvariants)
11
12
  - [PageTitle](#pagetitle)
12
13
  - [ProcessAttributes](#processattributes)
13
14
  - [Rails::ActionController::ImplicitRender](#railsactioncontrollerimplicitrender)
@@ -94,6 +95,60 @@ You can still use the regular `before_template`, `after_template`, and `around_t
94
95
 
95
96
  When used with `Rails::AutoLayout`, layout callbacks (`before_layout`, `after_layout`, `around_layout`) are also available. See the `Rails::AutoLayout` section below.
96
97
 
98
+ ### `ElementVariants`
99
+
100
+ Declare named variants for one or more HTML elements, then apply them by passing the variant name as a Symbol (or Symbols) in the first argument to the element method. By default, each variant adds a `data-variant-<name>` attribute to the element.
101
+
102
+ Extend your view class with `Phlexible::ElementVariants` and declare variants with `variant`:
103
+
104
+ ```ruby
105
+ class MyView < Phlex::HTML
106
+ extend Phlexible::ElementVariants
107
+
108
+ variant :divider, on: [:h1, :h2, :h3, :h4, :h5, :h6]
109
+
110
+ def view_template
111
+ h1(:divider) { 'My Title' }
112
+ end
113
+ end
114
+ ```
115
+
116
+ This will output:
117
+
118
+ ```html
119
+ <h1 data-variant-divider>My Title</h1>
120
+ ```
121
+
122
+ Underscored names are rendered as dashes in the data attribute (e.g. `:super_big` becomes `data-variant-super-big`).
123
+
124
+ #### Modifying attributes
125
+
126
+ Pass a block to `variant` to modify the element's attributes when the variant is used. The block receives the attributes hash:
127
+
128
+ ```ruby
129
+ class MyView < Phlex::HTML
130
+ extend Phlexible::ElementVariants
131
+
132
+ variant :external, on: :a do |attributes|
133
+ attributes[:target] = '_blank'
134
+ end
135
+
136
+ def view_template
137
+ a(:external, href: 'https://example.com') { 'Link' }
138
+ end
139
+ end
140
+ ```
141
+
142
+ #### Multiple variants
143
+
144
+ You can apply multiple variants to a single element by passing more than one Symbol:
145
+
146
+ ```ruby
147
+ a(:external, :primary, href: '/foo') { 'Link' }
148
+ ```
149
+
150
+ Passing an unregistered variant raises `ArgumentError`.
151
+
97
152
  ### `PageTitle`
98
153
 
99
154
  Helper to assist in defining page titles within Phlex views. Also includes support for nested views, where each desendent view class will have its title prepended to the page title. Simply include *Phlexible::PageTitle* module and assign the title to the `page_title` class variable:
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- phlexible (3.3.0)
4
+ phlexible (3.4.0)
5
5
  phlex (>= 1.10.0, < 3.0.0)
6
6
  phlex-rails (>= 1.2.0, < 3.0.0)
7
7
  rails (>= 7.2.0, < 9.0.0)
@@ -10,29 +10,29 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (7.2.3)
14
- actionpack (= 7.2.3)
15
- activesupport (= 7.2.3)
13
+ actioncable (7.2.3.1)
14
+ actionpack (= 7.2.3.1)
15
+ activesupport (= 7.2.3.1)
16
16
  nio4r (~> 2.0)
17
17
  websocket-driver (>= 0.6.1)
18
18
  zeitwerk (~> 2.6)
19
- actionmailbox (7.2.3)
20
- actionpack (= 7.2.3)
21
- activejob (= 7.2.3)
22
- activerecord (= 7.2.3)
23
- activestorage (= 7.2.3)
24
- activesupport (= 7.2.3)
19
+ actionmailbox (7.2.3.1)
20
+ actionpack (= 7.2.3.1)
21
+ activejob (= 7.2.3.1)
22
+ activerecord (= 7.2.3.1)
23
+ activestorage (= 7.2.3.1)
24
+ activesupport (= 7.2.3.1)
25
25
  mail (>= 2.8.0)
26
- actionmailer (7.2.3)
27
- actionpack (= 7.2.3)
28
- actionview (= 7.2.3)
29
- activejob (= 7.2.3)
30
- activesupport (= 7.2.3)
26
+ actionmailer (7.2.3.1)
27
+ actionpack (= 7.2.3.1)
28
+ actionview (= 7.2.3.1)
29
+ activejob (= 7.2.3.1)
30
+ activesupport (= 7.2.3.1)
31
31
  mail (>= 2.8.0)
32
32
  rails-dom-testing (~> 2.2)
33
- actionpack (7.2.3)
34
- actionview (= 7.2.3)
35
- activesupport (= 7.2.3)
33
+ actionpack (7.2.3.1)
34
+ actionview (= 7.2.3.1)
35
+ activesupport (= 7.2.3.1)
36
36
  cgi
37
37
  nokogiri (>= 1.8.5)
38
38
  racc
@@ -42,36 +42,36 @@ GEM
42
42
  rails-dom-testing (~> 2.2)
43
43
  rails-html-sanitizer (~> 1.6)
44
44
  useragent (~> 0.16)
45
- actiontext (7.2.3)
46
- actionpack (= 7.2.3)
47
- activerecord (= 7.2.3)
48
- activestorage (= 7.2.3)
49
- activesupport (= 7.2.3)
45
+ actiontext (7.2.3.1)
46
+ actionpack (= 7.2.3.1)
47
+ activerecord (= 7.2.3.1)
48
+ activestorage (= 7.2.3.1)
49
+ activesupport (= 7.2.3.1)
50
50
  globalid (>= 0.6.0)
51
51
  nokogiri (>= 1.8.5)
52
- actionview (7.2.3)
53
- activesupport (= 7.2.3)
52
+ actionview (7.2.3.1)
53
+ activesupport (= 7.2.3.1)
54
54
  builder (~> 3.1)
55
55
  cgi
56
56
  erubi (~> 1.11)
57
57
  rails-dom-testing (~> 2.2)
58
58
  rails-html-sanitizer (~> 1.6)
59
- activejob (7.2.3)
60
- activesupport (= 7.2.3)
59
+ activejob (7.2.3.1)
60
+ activesupport (= 7.2.3.1)
61
61
  globalid (>= 0.3.6)
62
- activemodel (7.2.3)
63
- activesupport (= 7.2.3)
64
- activerecord (7.2.3)
65
- activemodel (= 7.2.3)
66
- activesupport (= 7.2.3)
62
+ activemodel (7.2.3.1)
63
+ activesupport (= 7.2.3.1)
64
+ activerecord (7.2.3.1)
65
+ activemodel (= 7.2.3.1)
66
+ activesupport (= 7.2.3.1)
67
67
  timeout (>= 0.4.0)
68
- activestorage (7.2.3)
69
- actionpack (= 7.2.3)
70
- activejob (= 7.2.3)
71
- activerecord (= 7.2.3)
72
- activesupport (= 7.2.3)
68
+ activestorage (7.2.3.1)
69
+ actionpack (= 7.2.3.1)
70
+ activejob (= 7.2.3.1)
71
+ activerecord (= 7.2.3.1)
72
+ activesupport (= 7.2.3.1)
73
73
  marcel (~> 1.0)
74
- activesupport (7.2.3)
74
+ activesupport (7.2.3.1)
75
75
  base64
76
76
  benchmark (>= 0.3)
77
77
  bigdecimal
@@ -80,10 +80,10 @@ GEM
80
80
  drb
81
81
  i18n (>= 1.6, < 2)
82
82
  logger (>= 1.4.2)
83
- minitest (>= 5.1)
83
+ minitest (>= 5.1, < 6)
84
84
  securerandom (>= 0.3)
85
85
  tzinfo (~> 2.0, >= 2.0.5)
86
- addressable (2.8.8)
86
+ addressable (2.9.0)
87
87
  public_suffix (>= 2.0.2, < 8.0)
88
88
  amazing_print (2.0.0)
89
89
  appraisal (2.5.0)
@@ -93,7 +93,7 @@ GEM
93
93
  ast (2.4.3)
94
94
  base64 (0.3.0)
95
95
  benchmark (0.5.0)
96
- bigdecimal (4.0.1)
96
+ bigdecimal (4.1.2)
97
97
  builder (3.3.0)
98
98
  capybara (3.40.0)
99
99
  addressable
@@ -125,22 +125,23 @@ GEM
125
125
  dispersion (0.2.0)
126
126
  prism
127
127
  drb (2.2.3)
128
- erb (6.0.1)
128
+ erb (6.0.4)
129
129
  erubi (1.13.1)
130
130
  globalid (1.3.0)
131
131
  activesupport (>= 6.1)
132
132
  i18n (1.14.8)
133
133
  concurrent-ruby (~> 1.0)
134
134
  io-console (0.8.2)
135
- irb (1.16.0)
135
+ irb (1.18.0)
136
136
  pp (>= 0.6.0)
137
+ prism (>= 1.3.0)
137
138
  rdoc (>= 4.0.0)
138
139
  reline (>= 0.4.2)
139
- json (2.18.0)
140
+ json (2.19.5)
140
141
  language_server-protocol (3.17.0.5)
141
142
  lint_roller (1.1.0)
142
143
  logger (1.7.0)
143
- loofah (2.25.0)
144
+ loofah (2.25.1)
144
145
  crass (~> 1.0.2)
145
146
  nokogiri (>= 1.12.0)
146
147
  mail (2.9.0)
@@ -162,7 +163,7 @@ GEM
162
163
  minitest-spec-rails (7.4.1)
163
164
  minitest (>= 5.0)
164
165
  railties (>= 4.1)
165
- net-imap (0.6.2)
166
+ net-imap (0.6.4)
166
167
  date
167
168
  net-protocol
168
169
  net-pop (0.1.2)
@@ -172,27 +173,27 @@ GEM
172
173
  net-smtp (0.5.1)
173
174
  net-protocol
174
175
  nio4r (2.7.5)
175
- nokogiri (1.19.0-aarch64-linux-gnu)
176
+ nokogiri (1.19.3-aarch64-linux-gnu)
176
177
  racc (~> 1.4)
177
- nokogiri (1.19.0-aarch64-linux-musl)
178
+ nokogiri (1.19.3-aarch64-linux-musl)
178
179
  racc (~> 1.4)
179
- nokogiri (1.19.0-arm-linux-gnu)
180
+ nokogiri (1.19.3-arm-linux-gnu)
180
181
  racc (~> 1.4)
181
- nokogiri (1.19.0-arm-linux-musl)
182
+ nokogiri (1.19.3-arm-linux-musl)
182
183
  racc (~> 1.4)
183
- nokogiri (1.19.0-arm64-darwin)
184
+ nokogiri (1.19.3-arm64-darwin)
184
185
  racc (~> 1.4)
185
- nokogiri (1.19.0-x86_64-darwin)
186
+ nokogiri (1.19.3-x86_64-darwin)
186
187
  racc (~> 1.4)
187
- nokogiri (1.19.0-x86_64-linux-gnu)
188
+ nokogiri (1.19.3-x86_64-linux-gnu)
188
189
  racc (~> 1.4)
189
- nokogiri (1.19.0-x86_64-linux-musl)
190
+ nokogiri (1.19.3-x86_64-linux-musl)
190
191
  racc (~> 1.4)
191
- parallel (1.27.0)
192
- parser (3.3.10.1)
192
+ parallel (2.1.0)
193
+ parser (3.3.11.1)
193
194
  ast (~> 2.4.1)
194
195
  racc
195
- phlex (1.11.0)
196
+ phlex (1.11.1)
196
197
  phlex-rails (1.2.2)
197
198
  phlex (>= 1.10, < 2)
198
199
  railties (>= 6.1, < 9)
@@ -201,44 +202,44 @@ GEM
201
202
  pretty_please (0.2.0)
202
203
  dispersion (~> 0.2)
203
204
  prettyprint (0.2.0)
204
- prism (1.8.0)
205
+ prism (1.9.0)
205
206
  psych (5.3.1)
206
207
  date
207
208
  stringio
208
- public_suffix (7.0.2)
209
+ public_suffix (7.0.5)
209
210
  racc (1.8.1)
210
- rack (3.2.4)
211
- rack-session (2.1.1)
211
+ rack (3.2.6)
212
+ rack-session (2.1.2)
212
213
  base64 (>= 0.1.0)
213
214
  rack (>= 3.0.0)
214
215
  rack-test (2.2.0)
215
216
  rack (>= 1.3)
216
217
  rackup (2.3.1)
217
218
  rack (>= 3)
218
- rails (7.2.3)
219
- actioncable (= 7.2.3)
220
- actionmailbox (= 7.2.3)
221
- actionmailer (= 7.2.3)
222
- actionpack (= 7.2.3)
223
- actiontext (= 7.2.3)
224
- actionview (= 7.2.3)
225
- activejob (= 7.2.3)
226
- activemodel (= 7.2.3)
227
- activerecord (= 7.2.3)
228
- activestorage (= 7.2.3)
229
- activesupport (= 7.2.3)
219
+ rails (7.2.3.1)
220
+ actioncable (= 7.2.3.1)
221
+ actionmailbox (= 7.2.3.1)
222
+ actionmailer (= 7.2.3.1)
223
+ actionpack (= 7.2.3.1)
224
+ actiontext (= 7.2.3.1)
225
+ actionview (= 7.2.3.1)
226
+ activejob (= 7.2.3.1)
227
+ activemodel (= 7.2.3.1)
228
+ activerecord (= 7.2.3.1)
229
+ activestorage (= 7.2.3.1)
230
+ activesupport (= 7.2.3.1)
230
231
  bundler (>= 1.15.0)
231
- railties (= 7.2.3)
232
+ railties (= 7.2.3.1)
232
233
  rails-dom-testing (2.3.0)
233
234
  activesupport (>= 5.0.0)
234
235
  minitest
235
236
  nokogiri (>= 1.6)
236
- rails-html-sanitizer (1.6.2)
237
- loofah (~> 2.21)
237
+ rails-html-sanitizer (1.7.0)
238
+ loofah (~> 2.25)
238
239
  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)
239
- railties (7.2.3)
240
- actionpack (= 7.2.3)
241
- activesupport (= 7.2.3)
240
+ railties (7.2.3.1)
241
+ actionpack (= 7.2.3.1)
242
+ activesupport (= 7.2.3.1)
242
243
  cgi
243
244
  irb (~> 1.13)
244
245
  rackup (>= 1.0.0)
@@ -247,32 +248,32 @@ GEM
247
248
  tsort (>= 0.2)
248
249
  zeitwerk (~> 2.6)
249
250
  rainbow (3.1.1)
250
- rake (13.3.1)
251
- rdoc (7.1.0)
251
+ rake (13.4.2)
252
+ rdoc (7.2.0)
252
253
  erb
253
254
  psych (>= 4.0.0)
254
255
  tsort
255
- regexp_parser (2.11.3)
256
+ regexp_parser (2.12.0)
256
257
  reline (0.6.3)
257
258
  io-console (~> 0.5)
258
- rubocop (1.82.1)
259
+ rubocop (1.86.1)
259
260
  json (~> 2.3)
260
261
  language_server-protocol (~> 3.17.0.2)
261
262
  lint_roller (~> 1.1.0)
262
- parallel (~> 1.10)
263
+ parallel (>= 1.10)
263
264
  parser (>= 3.3.0.2)
264
265
  rainbow (>= 2.2.2, < 4.0)
265
266
  regexp_parser (>= 2.9.3, < 3.0)
266
- rubocop-ast (>= 1.48.0, < 2.0)
267
+ rubocop-ast (>= 1.49.0, < 2.0)
267
268
  ruby-progressbar (~> 1.7)
268
269
  unicode-display_width (>= 2.4.0, < 4.0)
269
- rubocop-ast (1.49.0)
270
+ rubocop-ast (1.49.1)
270
271
  parser (>= 3.3.7.2)
271
272
  prism (~> 1.7)
272
273
  rubocop-disable_syntax (0.2.0)
273
274
  lint_roller
274
275
  rubocop (>= 1.72.0)
275
- rubocop-minitest (0.38.2)
276
+ rubocop-minitest (0.39.1)
276
277
  lint_roller (~> 1.1)
277
278
  rubocop (>= 1.75.0, < 2.0)
278
279
  rubocop-ast (>= 1.38.0, < 2.0)
@@ -283,7 +284,7 @@ GEM
283
284
  lint_roller (~> 1.1)
284
285
  rubocop (>= 1.75.0, < 2.0)
285
286
  rubocop-ast (>= 1.47.1, < 2.0)
286
- rubocop-rails (2.34.3)
287
+ rubocop-rails (2.35.0)
287
288
  activesupport (>= 4.2.0)
288
289
  lint_roller (~> 1.1)
289
290
  rack (>= 1.1)
@@ -296,7 +297,7 @@ GEM
296
297
  securerandom (0.4.1)
297
298
  stringio (3.2.0)
298
299
  thor (1.5.0)
299
- timeout (0.6.0)
300
+ timeout (0.6.1)
300
301
  tsort (0.2.0)
301
302
  tzinfo (2.0.6)
302
303
  concurrent-ruby (~> 1.0)
@@ -310,7 +311,7 @@ GEM
310
311
  websocket-extensions (0.1.5)
311
312
  xpath (3.2.0)
312
313
  nokogiri (~> 1.8)
313
- zeitwerk (2.7.4)
314
+ zeitwerk (2.7.5)
314
315
 
315
316
  PLATFORMS
316
317
  aarch64-linux
@@ -346,24 +347,24 @@ DEPENDENCIES
346
347
  rubocop-rake
347
348
 
348
349
  CHECKSUMS
349
- actioncable (7.2.3) sha256=e15d17b245f1dfe7cafdda4a0c6f7ba8ebaab1af33884415e09cfef4e93ad4f9
350
- actionmailbox (7.2.3) sha256=16bbf0a7c330f2d08d52d5e3c1b03813a8ef60bfb0a48e89c0bf92b069cb4d5e
351
- actionmailer (7.2.3) sha256=68d646b852a6d2b25d8834fc796c3dc10f76a4c7fd77b3251c3f4dd832ec8ab8
352
- actionpack (7.2.3) sha256=2a14e4c64695777041ea7aaf498462284cadd561f009654393daf9b2de7207cf
353
- actiontext (7.2.3) sha256=a6ffd9efb7b7b4e26029e5c88e8a2ea9aae8d6cefdfed960be139772f1a94037
354
- actionview (7.2.3) sha256=1f427d7a41b43804d7250911535740451b9c32b6416239d87e6dab9d5948ecb2
355
- activejob (7.2.3) sha256=e44964472de267b69e93752f088193c8ad2e56d2ef451d059dd7a53761e5ffb0
356
- activemodel (7.2.3) sha256=bbaf66aeb93212e98ebf6ab900f8290f9a831645f0b235427f5acf0e074739db
357
- activerecord (7.2.3) sha256=6facb7478ceb5f6baa9f0647daa50b4a3a43934997900f0011e6c667ff41a0d7
358
- activestorage (7.2.3) sha256=4c1422bbfaa60c89e7b43cc38ade7bd3b8dc81024c48a21c1ac56814cf34ca2f
359
- activesupport (7.2.3) sha256=5675c9770dac93e371412684249f9dc3c8cec104efd0624362a520ae685c7b10
360
- addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
350
+ actioncable (7.2.3.1) sha256=d3bf40a3f4fc79a09709878f0e5c43a5e2d8e6607089f6b38f9472b8715eb33c
351
+ actionmailbox (7.2.3.1) sha256=a4e73480c97ab2fff5a416f92c54b065b1a6564ea4a807d42e0b83a94d4ec541
352
+ actionmailer (7.2.3.1) sha256=f578b6d5c5f81a20b6f6a796187698890c8348c041daa5e2e7cf7814ac520467
353
+ actionpack (7.2.3.1) sha256=b66afe7f937273270cb63f03bde7af7ba850017867766e8848d06d3e12e1e4ca
354
+ actiontext (7.2.3.1) sha256=5b1418f407ea347b98084a62b9b6caa1d3b1eb482d18dbbb69fad43f242843e3
355
+ actionview (7.2.3.1) sha256=de19b86843391762ac24a6287c30fbba11cd475fa4d4b664924d5fb7a2f1ff7c
356
+ activejob (7.2.3.1) sha256=0bc4227ce371b82da119cd27ed91e0deb9b744bbfa266b86e4bd8d1e2a8f6ed8
357
+ activemodel (7.2.3.1) sha256=39e1869b85e7a0b64a8ccddf19f3fb0c44261b329785384bb88f878eab51c0d0
358
+ activerecord (7.2.3.1) sha256=b89513e275da5b34183c5f2a497c154b02dcc7c811d399ab557e67e36170a05d
359
+ activestorage (7.2.3.1) sha256=0b224ea42e6256d3e33768bdccad8e3c9110a5140fc9faf98bde8873dd5dffab
360
+ activesupport (7.2.3.1) sha256=11ebed516a43a0bb47346227a35ebae4d9427465a7c9eb197a03d5c8d283cb34
361
+ addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
361
362
  amazing_print (2.0.0) sha256=2e36aba46ac78d37ed27ca0e2056afe3583183bb5c64f157c246b267355e5d6a
362
363
  appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
363
364
  ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
364
365
  base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
365
366
  benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
366
- bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
367
+ bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
367
368
  builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
368
369
  capybara (3.40.0) sha256=42dba720578ea1ca65fd7a41d163dd368502c191804558f6e0f71b391054aeef
369
370
  cgi (0.5.1) sha256=e93fcafc69b8a934fe1e6146121fa35430efa8b4a4047c4893764067036f18e9
@@ -379,17 +380,17 @@ CHECKSUMS
379
380
  difftastic (0.8.0-x86_64-linux) sha256=9c384dd9d2395b2b1b388922e1745f1472d19c4b3af9f83c0d22b30f6619208f
380
381
  dispersion (0.2.0) sha256=64a375f82197b50633b55250d5eac976c412b7c28a7f8cbf8b5f74ced1aaf362
381
382
  drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
382
- erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
383
+ erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
383
384
  erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
384
385
  globalid (1.3.0) sha256=05c639ad6eb4594522a0b07983022f04aa7254626ab69445a0e493aa3786ff11
385
386
  i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
386
387
  io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
387
- irb (1.16.0) sha256=2abe56c9ac947cdcb2f150572904ba798c1e93c890c256f8429981a7675b0806
388
- json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
388
+ irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
389
+ json (2.19.5) sha256=218a18553e4801d579ca7e0f5bc72bafd776d7397238a1fb4e74db5b0a812c59
389
390
  language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
390
391
  lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
391
392
  logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
392
- loofah (2.25.0) sha256=df5ed7ac3bac6a4ec802df3877ee5cc86d027299f8952e6243b3dac446b060e6
393
+ loofah (2.25.1) sha256=d436c73dbd0c1147b16c4a41db097942d217303e1f7728704b37e4df9f6d2e04
393
394
  mail (2.9.0) sha256=6fa6673ecd71c60c2d996260f9ee3dd387d4673b8169b502134659ece6d34941
394
395
  marcel (1.1.0) sha256=fdcfcfa33cc52e93c4308d40e4090a5d4ea279e160a7f6af988260fa970e0bee
395
396
  matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b
@@ -399,57 +400,57 @@ CHECKSUMS
399
400
  minitest-difftastic (0.2.1) sha256=fc2c6e01cd839371772ed08604c9ce7b1567ee262e9dd4fef7d78665d1a99c45
400
401
  minitest-focus (1.4.1) sha256=394517cbe2dcb2d992d8ffc41a3b2b6315777a4daa69239de4fefe7110dd810e
401
402
  minitest-spec-rails (7.4.1) sha256=cda2638ded7cd98ab5f2bbf0eafbba9fdc4b0fc58248ad38703b12403831254f
402
- net-imap (0.6.2) sha256=08caacad486853c61676cca0c0c47df93db02abc4a8239a8b67eb0981428acc6
403
+ net-imap (0.6.4) sha256=9a5598c67a3022c284d98430ef1d4948e7dbdb62596f61081ea8ca933270a02b
403
404
  net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
404
405
  net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
405
406
  net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
406
407
  nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
407
- nokogiri (1.19.0-aarch64-linux-gnu) sha256=11a97ecc3c0e7e5edcf395720b10860ef493b768f6aa80c539573530bc933767
408
- nokogiri (1.19.0-aarch64-linux-musl) sha256=eb70507f5e01bc23dad9b8dbec2b36ad0e61d227b42d292835020ff754fb7ba9
409
- nokogiri (1.19.0-arm-linux-gnu) sha256=572a259026b2c8b7c161fdb6469fa2d0edd2b61cd599db4bbda93289abefbfe5
410
- nokogiri (1.19.0-arm-linux-musl) sha256=23ed90922f1a38aed555d3de4d058e90850c731c5b756d191b3dc8055948e73c
411
- nokogiri (1.19.0-arm64-darwin) sha256=0811dfd936d5f6dd3f6d32ef790568bf29b2b7bead9ba68866847b33c9cf5810
412
- nokogiri (1.19.0-x86_64-darwin) sha256=1dad56220b603a8edb9750cd95798bffa2b8dd9dd9aa47f664009ee5b43e3067
413
- nokogiri (1.19.0-x86_64-linux-gnu) sha256=f482b95c713d60031d48c44ce14562f8d2ce31e3a9e8dd0ccb131e9e5a68b58c
414
- nokogiri (1.19.0-x86_64-linux-musl) sha256=1c4ca6b381622420073ce6043443af1d321e8ed93cc18b08e2666e5bd02ffae4
415
- parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
416
- parser (3.3.10.1) sha256=06f6a725d2cd91e5e7f2b7c32ba143631e1f7c8ae2fb918fc4cebec187e6a688
417
- phlex (1.11.0) sha256=979548e79a205c981612f1ab613addc8fa128c8092694d02f41aad4cea905e73
408
+ nokogiri (1.19.3-aarch64-linux-gnu) sha256=46b89e5d7b9e844c2ee360794240c6ea2a4e6fa0c5892a4ed487db621224b639
409
+ nokogiri (1.19.3-aarch64-linux-musl) sha256=8392dfdcd21be7a94dbbe9ccc138dea01b97b24cb2dc02a114ca98bfb1d9a0b7
410
+ nokogiri (1.19.3-arm-linux-gnu) sha256=3919d5ffc334ad778a4a9eb88fda7dcb8b1fb58c8a52ac640c6dcd2f038e774f
411
+ nokogiri (1.19.3-arm-linux-musl) sha256=9ce1cb6346bb9c67b1550eb537aa183ead91e4b6eadb2f36ade02d8dd2a79fb6
412
+ nokogiri (1.19.3-arm64-darwin) sha256=71b9bd424b1b7abc18b05052a1a3cfd3627abdca62be280854cc411791357e42
413
+ nokogiri (1.19.3-x86_64-darwin) sha256=77f3fba57d46c53ab31e62fc6c28f705109d1bf6264356c76f132b2be5728d4d
414
+ nokogiri (1.19.3-x86_64-linux-gnu) sha256=2f5078620fe12e83669b5b17311b32532a8153d02eee7ad06948b926d6080976
415
+ nokogiri (1.19.3-x86_64-linux-musl) sha256=248c906d2166eca5efb56d52fdee5f9a1f51d69a72e2b64fdac647b4ce39ea3f
416
+ parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
417
+ parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
418
+ phlex (1.11.1) sha256=bf21f88672c8497d6370636bcefc0373d59d58488cea0c849822b3e188ec59a1
418
419
  phlex-rails (1.2.2) sha256=a20218449e71bc9fa5a71b672fbede8a654c6b32a58f1c4ea83ddc1682307a4c
419
- phlexible (3.3.0)
420
+ phlexible (3.4.0)
420
421
  pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
421
422
  pretty_please (0.2.0) sha256=1f00296f946ae8ffd53db25803ed3998d615b9cc07526517dc75fcca6af3a0d3
422
423
  prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
423
- prism (1.8.0) sha256=84453a16ef5530ea62c5f03ec16b52a459575ad4e7b9c2b360fd8ce2c39c1254
424
+ prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
424
425
  psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
425
- public_suffix (7.0.2) sha256=9114090c8e4e7135c1fd0e7acfea33afaab38101884320c65aaa0ffb8e26a857
426
+ public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
426
427
  racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
427
- rack (3.2.4) sha256=5d74b6f75082a643f43c1e76b419c40f0e5527fcfee1e669ac1e6b73c0ccb6f6
428
- rack-session (2.1.1) sha256=0b6dc07dea7e4b583f58a48e8b806d4c9f1c6c9214ebc202ec94562cbea2e4e9
428
+ rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
429
+ rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
429
430
  rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
430
431
  rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
431
- rails (7.2.3) sha256=9a9812eb131189676e64665f6883fc9c4051f412cc87ef9e3fa242a09c609bff
432
+ rails (7.2.3.1) sha256=96c0a0160081ef3f1e407438880f6194c6ec94cdf40c8f83fc7bb22c279eba94
432
433
  rails-dom-testing (2.3.0) sha256=8acc7953a7b911ca44588bf08737bc16719f431a1cc3091a292bca7317925c1d
433
- rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
434
- railties (7.2.3) sha256=6eb010a6bfe6f223e783f739ddfcbdb5b88b1f3a87f7739f0a0685e466250422
434
+ rails-html-sanitizer (1.7.0) sha256=28b145cceaf9cc214a9874feaa183c3acba036c9592b19886e0e45efc62b1e89
435
+ railties (7.2.3.1) sha256=aea3393ee10243ceedcbeccb45458a0d58b524b6d21bf32eff8b93853baae15a
435
436
  rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
436
- rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
437
- rdoc (7.1.0) sha256=494899df0706c178596ca6e1d50f1b7eb285a9b2aae715be5abd742734f17363
438
- regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
437
+ rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
438
+ rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
439
+ regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
439
440
  reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
440
- rubocop (1.82.1) sha256=09f1a6a654a960eda767aebea33e47603080f8e9c9a3f019bf9b94c9cab5e273
441
- rubocop-ast (1.49.0) sha256=49c3676d3123a0923d333e20c6c2dbaaae2d2287b475273fddee0c61da9f71fd
441
+ rubocop (1.86.1) sha256=44415f3f01d01a21e01132248d2fd0867572475b566ca188a0a42133a08d4531
442
+ rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
442
443
  rubocop-disable_syntax (0.2.0) sha256=1e61645773b3fc2f74e995ec65f605f7db59437c274fdfd4f385f60bf86af73e
443
- rubocop-minitest (0.38.2) sha256=5a9dfb5a538973d0601aa51e59637d3998bb8df81233edf1ff421504c6280068
444
+ rubocop-minitest (0.39.1) sha256=998398d6da4026d297f0f9bf709a1eac5f2b6947c24431f94af08138510cf7ed
444
445
  rubocop-packaging (0.6.0) sha256=fb92bd0fb48e6f8cdb1648d2249b0cd51c2497dcc87340132d22f01edbf558a7
445
446
  rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
446
- rubocop-rails (2.34.3) sha256=10d37989024865ecda8199f311f3faca990143fbac967de943f88aca11eb9ad2
447
+ rubocop-rails (2.35.0) sha256=a5d9f0f6c6d9b73d9ddd181c4c0b6d2e00dd17107480828d31c7b369ebfcd49c
447
448
  rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
448
449
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
449
450
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
450
451
  stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
451
452
  thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
452
- timeout (0.6.0) sha256=6d722ad619f96ee383a0c557ec6eb8c4ecb08af3af62098a0be5057bf00de1af
453
+ timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb
453
454
  tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
454
455
  tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
455
456
  unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
@@ -458,7 +459,7 @@ CHECKSUMS
458
459
  websocket-driver (0.8.0) sha256=ed0dba4b943c22f17f9a734817e808bc84cdce6a7e22045f5315aa57676d4962
459
460
  websocket-extensions (0.1.5) sha256=1c6ba63092cda343eb53fc657110c71c754c56484aad42578495227d717a8241
460
461
  xpath (3.2.0) sha256=6dfda79d91bb3b949b947ecc5919f042ef2f399b904013eb3ef6d20dd3a4082e
461
- zeitwerk (2.7.4) sha256=2bef90f356bdafe9a6c2bd32bcd804f83a4f9b8bc27f3600fff051eb3edcec8b
462
+ zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
462
463
 
463
464
  BUNDLED WITH
464
465
  4.0.4