search_rails 2.0.2 → 3.0.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: 591829d518bd2430fb062ad6c558455b392f2042322a4941006c758314452fdc
4
- data.tar.gz: df1ecfd6a55574b88b6cef2ded3173ccabfc21baf93917e231ffbd8dff506e38
3
+ metadata.gz: 975574cccba4554124a93f491bc64035e18f675f9431b3b151071cc437f6474c
4
+ data.tar.gz: 555a0da1753da34f84f472a7e664d785a90b587ef027c8033a382d1a5debdc77
5
5
  SHA512:
6
- metadata.gz: 82632526f8b6194bdb47dc0ada6b82daf1824d08f1106b3d6291d88254c7931316f39b1dd2eb513447c19f01e66e35c9f74a74551b88d6f73665c776a7fbe53a
7
- data.tar.gz: 3e27db825b6fabb4e6a6a6552f06a7ec4c8e6971a8249f63a611c58018f301d793ecba8c4e2797b93c17366f63a0718a1f2e1732212d276989f777c564fa724a
6
+ metadata.gz: b391a9f5b25785323b1c7c26a38645e86864478735447b9f4164a2925f1280ebf9bd05ea68785c2c6bb68a7d8db1b8cf6c8c11135c315c1d618949005faed496
7
+ data.tar.gz: 9bafe4539ee30113b25f833bb1e8a048141e210e2faa3cb27524b87142281629242f527ad575011c0c2aa5c4774abd9e05cbf4d27b196ea10f034636c97da3be
data/.node-version CHANGED
@@ -1 +1 @@
1
- 23.11.0
1
+ 26.3.1
data/.npm-version CHANGED
@@ -1 +1 @@
1
- 11.2.0
1
+ 11.17.0
data/.rubocop.yml CHANGED
@@ -5,15 +5,21 @@ AllCops:
5
5
  - "**/vendor/**/*"
6
6
  - "**/db/schema.rb"
7
7
  NewCops: enable
8
- TargetRubyVersion: 3.0
8
+ TargetRubyVersion: 4.0
9
9
  Layout/ClosingHeredocIndentation:
10
10
  Enabled: false
11
+ Layout/ElseAlignment:
12
+ Enabled: false
13
+ Layout/EndAlignment:
14
+ Enabled: false
11
15
  Layout/FirstArgumentIndentation:
12
16
  Enabled: false
13
17
  Layout/HashAlignment:
14
18
  Enabled: false
15
19
  Layout/HeredocIndentation:
16
20
  Enabled: false
21
+ Layout/IndentationWidth:
22
+ Enabled: false
17
23
  Layout/LineEndStringConcatenationIndentation:
18
24
  Enabled: false
19
25
  Layout/LineLength:
@@ -22,14 +28,20 @@ Layout/MultilineMethodCallIndentation:
22
28
  Enabled: false
23
29
  Layout/MultilineOperationIndentation:
24
30
  Enabled: false
31
+ Layout/SpaceAroundKeyword:
32
+ Enabled: false
25
33
  Layout/SpaceInsideHashLiteralBraces:
26
34
  Enabled: false
35
+ Lint/ConstantDefinitionInBlock:
36
+ Enabled: false
27
37
  Lint/EmptyClass:
28
38
  Enabled: false
29
39
  Lint/MissingSuper:
30
40
  Enabled: false
31
41
  Lint/PercentStringArray:
32
42
  Enabled: false
43
+ Lint/SafeNavigationChain:
44
+ Enabled: false
33
45
  Lint/ShadowingOuterLocalVariable:
34
46
  Enabled: false
35
47
  Lint/SuppressedException:
@@ -44,6 +56,8 @@ Metrics/BlockLength:
44
56
  Enabled: false
45
57
  Metrics/ClassLength:
46
58
  Enabled: false
59
+ Metrics/CollectionLiteralLength:
60
+ Enabled: false
47
61
  Metrics/CyclomaticComplexity:
48
62
  Enabled: false
49
63
  Metrics/MethodLength:
@@ -58,6 +72,8 @@ Naming/FileName:
58
72
  Enabled: false
59
73
  Naming/MethodParameterName:
60
74
  Enabled: false
75
+ Naming/PredicateMethod:
76
+ Enabled: false
61
77
  Naming/VariableNumber:
62
78
  Enabled: false
63
79
  Performance/Sum:
@@ -80,6 +96,8 @@ RSpec/NoExpectationExample:
80
96
  Enabled: false
81
97
  RSpec/PendingWithoutReason:
82
98
  Enabled: false
99
+ Rails/BulkChangeTable:
100
+ Enabled: false
83
101
  Rails/Delegate:
84
102
  Enabled: false
85
103
  Rails/DynamicFindBy:
@@ -94,6 +112,8 @@ Rails/Presence:
94
112
  Enabled: false
95
113
  Rails/Present:
96
114
  Enabled: false
115
+ Rails/SkipsModelValidations:
116
+ Enabled: false
97
117
  Rails/ThreeStateBooleanColumn:
98
118
  Enabled: false
99
119
  Rails/TimeZone:
@@ -110,6 +130,8 @@ Style/EmptyMethod:
110
130
  Enabled: false
111
131
  Style/IfUnlessModifier:
112
132
  Enabled: false
133
+ Style/Lambda:
134
+ Enabled: false
113
135
  Style/MultilineBlockChain:
114
136
  Enabled: false
115
137
  Style/NestedTernaryOperator:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.4.2
1
+ 4.0.5
data/.tool-versions CHANGED
@@ -1,3 +1,2 @@
1
- ruby 3.4.2
2
- yarn 1.22.22
3
- nodejs 23.11.0
1
+ ruby 4.0.5
2
+ nodejs 26.3.1
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- ruby "3.4.2"
7
+ ruby "4.0.5"
8
8
 
9
9
  gem "bundler-audit"
10
10
  gem "dorian"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- search_rails (2.0.2)
4
+ search_rails (3.0.0)
5
5
  chronic
6
6
  query-ruby
7
7
  rails
@@ -10,29 +10,31 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (8.0.2)
14
- actionpack (= 8.0.2)
15
- activesupport (= 8.0.2)
13
+ action_text-trix (2.1.19)
14
+ railties
15
+ actioncable (8.1.3)
16
+ actionpack (= 8.1.3)
17
+ activesupport (= 8.1.3)
16
18
  nio4r (~> 2.0)
17
19
  websocket-driver (>= 0.6.1)
18
20
  zeitwerk (~> 2.6)
19
- actionmailbox (8.0.2)
20
- actionpack (= 8.0.2)
21
- activejob (= 8.0.2)
22
- activerecord (= 8.0.2)
23
- activestorage (= 8.0.2)
24
- activesupport (= 8.0.2)
21
+ actionmailbox (8.1.3)
22
+ actionpack (= 8.1.3)
23
+ activejob (= 8.1.3)
24
+ activerecord (= 8.1.3)
25
+ activestorage (= 8.1.3)
26
+ activesupport (= 8.1.3)
25
27
  mail (>= 2.8.0)
26
- actionmailer (8.0.2)
27
- actionpack (= 8.0.2)
28
- actionview (= 8.0.2)
29
- activejob (= 8.0.2)
30
- activesupport (= 8.0.2)
28
+ actionmailer (8.1.3)
29
+ actionpack (= 8.1.3)
30
+ actionview (= 8.1.3)
31
+ activejob (= 8.1.3)
32
+ activesupport (= 8.1.3)
31
33
  mail (>= 2.8.0)
32
34
  rails-dom-testing (~> 2.2)
33
- actionpack (8.0.2)
34
- actionview (= 8.0.2)
35
- activesupport (= 8.0.2)
35
+ actionpack (8.1.3)
36
+ actionview (= 8.1.3)
37
+ activesupport (= 8.1.3)
36
38
  nokogiri (>= 1.8.5)
37
39
  rack (>= 2.2.4)
38
40
  rack-session (>= 1.0.1)
@@ -40,69 +42,69 @@ GEM
40
42
  rails-dom-testing (~> 2.2)
41
43
  rails-html-sanitizer (~> 1.6)
42
44
  useragent (~> 0.16)
43
- actiontext (8.0.2)
44
- actionpack (= 8.0.2)
45
- activerecord (= 8.0.2)
46
- activestorage (= 8.0.2)
47
- activesupport (= 8.0.2)
45
+ actiontext (8.1.3)
46
+ action_text-trix (~> 2.1.15)
47
+ actionpack (= 8.1.3)
48
+ activerecord (= 8.1.3)
49
+ activestorage (= 8.1.3)
50
+ activesupport (= 8.1.3)
48
51
  globalid (>= 0.6.0)
49
52
  nokogiri (>= 1.8.5)
50
- actionview (8.0.2)
51
- activesupport (= 8.0.2)
53
+ actionview (8.1.3)
54
+ activesupport (= 8.1.3)
52
55
  builder (~> 3.1)
53
56
  erubi (~> 1.11)
54
57
  rails-dom-testing (~> 2.2)
55
58
  rails-html-sanitizer (~> 1.6)
56
- activejob (8.0.2)
57
- activesupport (= 8.0.2)
59
+ activejob (8.1.3)
60
+ activesupport (= 8.1.3)
58
61
  globalid (>= 0.3.6)
59
- activemodel (8.0.2)
60
- activesupport (= 8.0.2)
61
- activerecord (8.0.2)
62
- activemodel (= 8.0.2)
63
- activesupport (= 8.0.2)
62
+ activemodel (8.1.3)
63
+ activesupport (= 8.1.3)
64
+ activerecord (8.1.3)
65
+ activemodel (= 8.1.3)
66
+ activesupport (= 8.1.3)
64
67
  timeout (>= 0.4.0)
65
- activestorage (8.0.2)
66
- actionpack (= 8.0.2)
67
- activejob (= 8.0.2)
68
- activerecord (= 8.0.2)
69
- activesupport (= 8.0.2)
68
+ activestorage (8.1.3)
69
+ actionpack (= 8.1.3)
70
+ activejob (= 8.1.3)
71
+ activerecord (= 8.1.3)
72
+ activesupport (= 8.1.3)
70
73
  marcel (~> 1.0)
71
- activesupport (8.0.2)
74
+ activesupport (8.1.3)
72
75
  base64
73
- benchmark (>= 0.3)
74
76
  bigdecimal
75
77
  concurrent-ruby (~> 1.0, >= 1.3.1)
76
78
  connection_pool (>= 2.2.5)
77
79
  drb
78
80
  i18n (>= 1.6, < 2)
81
+ json
79
82
  logger (>= 1.4.2)
80
83
  minitest (>= 5.1)
81
84
  securerandom (>= 0.3)
82
85
  tzinfo (~> 2.0, >= 2.0.5)
83
86
  uri (>= 0.13.1)
84
- addressable (2.8.7)
85
- public_suffix (>= 2.0.2, < 7.0)
87
+ addressable (2.9.0)
88
+ public_suffix (>= 2.0.2, < 8.0)
86
89
  ast (2.4.3)
87
- base64 (0.2.0)
88
- benchmark (0.4.0)
89
- bigdecimal (3.1.9)
90
+ base64 (0.3.0)
91
+ bigdecimal (4.1.2)
90
92
  builder (3.3.0)
91
- bundler-audit (0.9.2)
92
- bundler (>= 1.2.0, < 3)
93
+ bundler-audit (0.9.3)
94
+ bundler (>= 1.2.0)
93
95
  thor (~> 1.0)
94
96
  chronic (0.10.2)
95
97
  cmdparse (3.0.7)
96
- concurrent-ruby (1.3.5)
97
- connection_pool (2.5.1)
98
- crack (1.0.0)
98
+ concurrent-ruby (1.3.7)
99
+ connection_pool (3.0.2)
100
+ crack (1.0.1)
99
101
  bigdecimal
100
102
  rexml
101
103
  crass (1.0.6)
102
- csv (3.3.4)
103
- date (3.4.1)
104
- diff-lcs (1.6.1)
105
- dorian (2.6.4)
104
+ csv (3.3.5)
105
+ date (3.5.1)
106
+ diff-lcs (1.6.2)
107
+ dorian (2.6.8)
106
108
  csv
107
109
  dorian-arguments
108
110
  dorian-eval
@@ -120,66 +122,69 @@ GEM
120
122
  terminal-table
121
123
  w_syntax_tree-erb
122
124
  yaml
123
- dorian-arguments (1.2.2)
124
- bigdecimal
125
- dorian-eval (1.5.0)
126
- yaml
127
- dorian-progress (1.1.2)
128
- ruby-progressbar
129
- dorian-to_struct (2.0.2)
130
- drb (2.2.1)
125
+ dorian-arguments (1.2.3)
126
+ bigdecimal (>= 3.1, < 5)
127
+ dorian-eval (1.5.1)
128
+ yaml (>= 0.3, < 1)
129
+ dorian-progress (1.1.3)
130
+ ruby-progressbar (>= 1.13, < 2)
131
+ dorian-to_struct (2.0.3)
132
+ drb (2.2.3)
133
+ erb (6.0.4)
131
134
  erubi (1.13.1)
132
135
  geom2d (0.4.1)
133
- git (3.0.0)
136
+ git (4.3.2)
134
137
  activesupport (>= 5.0)
135
138
  addressable (~> 2.8)
136
- process_executer (~> 1.3)
139
+ process_executer (~> 4.0)
137
140
  rchardet (~> 1.9)
138
- globalid (1.2.1)
141
+ globalid (1.4.0)
139
142
  activesupport (>= 6.1)
140
- haml (6.3.0)
143
+ haml (7.2.0)
141
144
  temple (>= 0.8.2)
142
145
  thor
143
146
  tilt
144
- hashdiff (1.1.2)
145
- hexapdf (1.2.0)
147
+ hashdiff (1.2.1)
148
+ hexapdf (1.9.1)
146
149
  cmdparse (~> 3.0, >= 3.0.3)
147
150
  geom2d (~> 0.4, >= 0.4.1)
148
151
  openssl (>= 2.2.1)
149
152
  strscan (>= 3.1.2)
150
- i18n (1.14.7)
153
+ i18n (1.15.2)
151
154
  concurrent-ruby (~> 1.0)
152
- io-console (0.8.0)
153
- irb (1.15.2)
155
+ io-console (0.8.2)
156
+ irb (1.18.0)
154
157
  pp (>= 0.6.0)
158
+ prism (>= 1.3.0)
155
159
  rdoc (>= 4.0.0)
156
160
  reline (>= 0.4.2)
157
- json (2.10.2)
161
+ json (2.20.0)
158
162
  language-ruby (1.2.0)
159
163
  dorian-arguments
160
164
  zeitwerk
161
- language_server-protocol (3.17.0.4)
162
- libv8-node (23.6.1.0)
163
- libv8-node (23.6.1.0-arm64-darwin)
164
- libv8-node (23.6.1.0-x86_64-linux)
165
+ language_server-protocol (3.17.0.5)
166
+ libv8-node (24.12.0.1-arm64-darwin)
167
+ libv8-node (24.12.0.1-x86_64-linux)
165
168
  lint_roller (1.1.0)
166
169
  logger (1.7.0)
167
- loofah (2.24.0)
170
+ loofah (2.25.1)
168
171
  crass (~> 1.0.2)
169
172
  nokogiri (>= 1.12.0)
170
- mail (2.8.1)
173
+ mail (2.9.0)
174
+ logger
171
175
  mini_mime (>= 0.1.1)
172
176
  net-imap
173
177
  net-pop
174
178
  net-smtp
175
- marcel (1.0.4)
179
+ marcel (1.2.1)
176
180
  mini_mime (1.1.5)
177
- mini_racer (0.18.1)
178
- libv8-node (~> 23.6.1.0)
179
- minitest (5.25.5)
180
- mustermann (3.0.3)
181
- ruby2_keywords (~> 0.0.1)
182
- net-imap (0.5.8)
181
+ mini_racer (0.21.4)
182
+ libv8-node (~> 24.12.0.1)
183
+ minitest (6.0.6)
184
+ drb (~> 2.0)
185
+ prism (~> 1.5)
186
+ mustermann (3.1.1)
187
+ net-imap (0.6.4.1)
183
188
  date
184
189
  net-protocol
185
190
  net-pop (0.1.2)
@@ -188,28 +193,29 @@ GEM
188
193
  timeout
189
194
  net-smtp (0.5.1)
190
195
  net-protocol
191
- nio4r (2.7.4)
192
- nokogiri (1.18.8-arm64-darwin)
196
+ nio4r (2.7.5)
197
+ nokogiri (1.19.4-arm64-darwin)
193
198
  racc (~> 1.4)
194
- nokogiri (1.18.8-x86_64-linux-gnu)
199
+ nokogiri (1.19.4-x86_64-linux-gnu)
195
200
  racc (~> 1.4)
196
- openssl (3.3.0)
197
- ostruct (0.6.1)
198
- parallel (1.27.0)
199
- parser (3.3.8.0)
201
+ openssl (4.0.2)
202
+ ostruct (0.6.3)
203
+ parallel (2.1.0)
204
+ parser (3.3.11.1)
200
205
  ast (~> 2.4.1)
201
206
  racc
202
- pp (0.6.2)
207
+ pp (0.6.4)
203
208
  prettyprint
204
209
  prettier_print (1.2.1)
205
210
  prettyprint (0.2.0)
206
- prism (1.4.0)
207
- process_executer (1.3.0)
208
- psych (5.2.3)
211
+ prism (1.9.0)
212
+ process_executer (4.0.4)
213
+ track_open_instances (~> 0.1)
214
+ psych (5.4.0)
209
215
  date
210
216
  stringio
211
- public_suffix (6.0.1)
212
- query-ruby (1.1.0)
217
+ public_suffix (7.0.5)
218
+ query-ruby (1.1.2)
213
219
  activesupport
214
220
  bigdecimal
215
221
  dorian-arguments
@@ -217,123 +223,128 @@ GEM
217
223
  language-ruby
218
224
  zeitwerk
219
225
  racc (1.8.1)
220
- rack (3.1.13)
221
- rack-protection (4.1.1)
226
+ rack (3.2.6)
227
+ rack-protection (4.2.1)
222
228
  base64 (>= 0.1.0)
223
229
  logger (>= 1.6.0)
224
230
  rack (>= 3.0.0, < 4)
225
- rack-session (2.1.0)
231
+ rack-session (2.1.2)
226
232
  base64 (>= 0.1.0)
227
233
  rack (>= 3.0.0)
228
234
  rack-test (2.2.0)
229
235
  rack (>= 1.3)
230
- rackup (2.2.1)
236
+ rackup (2.3.1)
231
237
  rack (>= 3)
232
- rails (8.0.2)
233
- actioncable (= 8.0.2)
234
- actionmailbox (= 8.0.2)
235
- actionmailer (= 8.0.2)
236
- actionpack (= 8.0.2)
237
- actiontext (= 8.0.2)
238
- actionview (= 8.0.2)
239
- activejob (= 8.0.2)
240
- activemodel (= 8.0.2)
241
- activerecord (= 8.0.2)
242
- activestorage (= 8.0.2)
243
- activesupport (= 8.0.2)
238
+ rails (8.1.3)
239
+ actioncable (= 8.1.3)
240
+ actionmailbox (= 8.1.3)
241
+ actionmailer (= 8.1.3)
242
+ actionpack (= 8.1.3)
243
+ actiontext (= 8.1.3)
244
+ actionview (= 8.1.3)
245
+ activejob (= 8.1.3)
246
+ activemodel (= 8.1.3)
247
+ activerecord (= 8.1.3)
248
+ activestorage (= 8.1.3)
249
+ activesupport (= 8.1.3)
244
250
  bundler (>= 1.15.0)
245
- railties (= 8.0.2)
246
- rails-dom-testing (2.2.0)
251
+ railties (= 8.1.3)
252
+ rails-dom-testing (2.3.0)
247
253
  activesupport (>= 5.0.0)
248
254
  minitest
249
255
  nokogiri (>= 1.6)
250
- rails-html-sanitizer (1.6.2)
251
- loofah (~> 2.21)
256
+ rails-html-sanitizer (1.7.0)
257
+ loofah (~> 2.25)
252
258
  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)
253
- railties (8.0.2)
254
- actionpack (= 8.0.2)
255
- activesupport (= 8.0.2)
259
+ railties (8.1.3)
260
+ actionpack (= 8.1.3)
261
+ activesupport (= 8.1.3)
256
262
  irb (~> 1.13)
257
263
  rackup (>= 1.0.0)
258
264
  rake (>= 12.2)
259
265
  thor (~> 1.0, >= 1.2.2)
266
+ tsort (>= 0.2)
260
267
  zeitwerk (~> 2.6)
261
268
  rainbow (3.1.1)
262
- rake (13.2.1)
263
- rchardet (1.9.0)
264
- rdoc (6.13.1)
269
+ rake (13.4.2)
270
+ rchardet (1.10.2)
271
+ rdoc (7.2.0)
272
+ erb
265
273
  psych (>= 4.0.0)
266
- regexp_parser (2.10.0)
267
- reline (0.6.1)
274
+ tsort
275
+ regexp_parser (2.12.0)
276
+ reline (0.6.3)
268
277
  io-console (~> 0.5)
269
- rexml (3.4.1)
270
- rspec (3.13.0)
278
+ rexml (3.4.4)
279
+ rspec (3.13.2)
271
280
  rspec-core (~> 3.13.0)
272
281
  rspec-expectations (~> 3.13.0)
273
282
  rspec-mocks (~> 3.13.0)
274
- rspec-core (3.13.3)
283
+ rspec-core (3.13.6)
275
284
  rspec-support (~> 3.13.0)
276
- rspec-expectations (3.13.3)
285
+ rspec-expectations (3.13.5)
277
286
  diff-lcs (>= 1.2.0, < 2.0)
278
287
  rspec-support (~> 3.13.0)
279
- rspec-mocks (3.13.2)
288
+ rspec-mocks (3.13.8)
280
289
  diff-lcs (>= 1.2.0, < 2.0)
281
290
  rspec-support (~> 3.13.0)
282
- rspec-support (3.13.2)
283
- rubocop (1.75.2)
291
+ rspec-support (3.13.7)
292
+ rubocop (1.88.0)
284
293
  json (~> 2.3)
285
294
  language_server-protocol (~> 3.17.0.2)
286
295
  lint_roller (~> 1.1.0)
287
- parallel (~> 1.10)
296
+ parallel (>= 1.10)
288
297
  parser (>= 3.3.0.2)
289
298
  rainbow (>= 2.2.2, < 4.0)
290
299
  regexp_parser (>= 2.9.3, < 3.0)
291
- rubocop-ast (>= 1.44.0, < 2.0)
300
+ rubocop-ast (>= 1.49.0, < 2.0)
292
301
  ruby-progressbar (~> 1.7)
293
302
  unicode-display_width (>= 2.4.0, < 4.0)
294
- rubocop-ast (1.44.1)
303
+ rubocop-ast (1.49.1)
295
304
  parser (>= 3.3.7.2)
296
- prism (~> 1.4)
297
- rubocop-capybara (2.22.1)
305
+ prism (~> 1.7)
306
+ rubocop-capybara (3.0.0)
298
307
  lint_roller (~> 1.1)
299
- rubocop (~> 1.72, >= 1.72.1)
300
- rubocop-factory_bot (2.27.1)
308
+ rubocop (~> 1.81)
309
+ rubocop-factory_bot (2.28.0)
301
310
  lint_roller (~> 1.1)
302
311
  rubocop (~> 1.72, >= 1.72.1)
303
- rubocop-performance (1.25.0)
312
+ rubocop-performance (1.26.1)
304
313
  lint_roller (~> 1.1)
305
314
  rubocop (>= 1.75.0, < 2.0)
306
- rubocop-ast (>= 1.38.0, < 2.0)
307
- rubocop-rails (2.31.0)
315
+ rubocop-ast (>= 1.47.1, < 2.0)
316
+ rubocop-rails (2.35.5)
308
317
  activesupport (>= 4.2.0)
309
318
  lint_roller (~> 1.1)
310
319
  rack (>= 1.1)
311
320
  rubocop (>= 1.75.0, < 2.0)
312
- rubocop-ast (>= 1.38.0, < 2.0)
321
+ rubocop-ast (>= 1.44.0, < 2.0)
313
322
  rubocop-rake (0.7.1)
314
323
  lint_roller (~> 1.1)
315
324
  rubocop (>= 1.72.1)
316
- rubocop-rspec (3.6.0)
325
+ rubocop-rspec (3.10.2)
317
326
  lint_roller (~> 1.1)
318
- rubocop (~> 1.72, >= 1.72.1)
319
- rubocop-rspec_rails (2.31.0)
327
+ regexp_parser (>= 2.0)
328
+ rubocop (~> 1.86, >= 1.86.2)
329
+ rubocop-rspec_rails (2.32.0)
320
330
  lint_roller (~> 1.1)
321
331
  rubocop (~> 1.72, >= 1.72.1)
322
332
  rubocop-rspec (~> 3.5)
323
- ruby-prof (1.7.1)
333
+ ruby-prof (2.0.5)
334
+ base64
335
+ ostruct
324
336
  ruby-progressbar (1.13.0)
325
- ruby2_keywords (0.0.5)
326
337
  securerandom (0.4.1)
327
- sinatra (4.1.1)
338
+ sinatra (4.2.1)
328
339
  logger (>= 1.6.0)
329
340
  mustermann (~> 3.0)
330
341
  rack (>= 3.0.0, < 4)
331
- rack-protection (= 4.1.1)
342
+ rack-protection (= 4.2.1)
332
343
  rack-session (>= 2.0.0, < 3)
333
344
  tilt (~> 2.0)
334
- stringio (3.1.7)
335
- strscan (3.1.3)
336
- syntax_tree (6.2.0)
345
+ stringio (3.2.0)
346
+ strscan (3.1.8)
347
+ syntax_tree (6.3.0)
337
348
  prettier_print (>= 1.2.0)
338
349
  syntax_tree-haml (4.0.3)
339
350
  haml (>= 5.2)
@@ -342,36 +353,39 @@ GEM
342
353
  syntax_tree-xml (0.1.0)
343
354
  prettier_print
344
355
  syntax_tree (>= 2.0.1)
345
- temple (0.10.3)
356
+ temple (0.10.4)
346
357
  terminal-table (4.0.0)
347
358
  unicode-display_width (>= 1.1.1, < 4)
348
- thor (1.3.2)
349
- tilt (2.6.0)
350
- timeout (0.4.3)
359
+ thor (1.5.0)
360
+ tilt (2.7.0)
361
+ timeout (0.6.1)
362
+ track_open_instances (0.1.15)
363
+ tsort (0.2.0)
351
364
  tzinfo (2.0.6)
352
365
  concurrent-ruby (~> 1.0)
353
- unicode-display_width (3.1.4)
354
- unicode-emoji (~> 4.0, >= 4.0.4)
355
- unicode-emoji (4.0.4)
356
- uri (1.0.3)
366
+ unicode-display_width (3.2.0)
367
+ unicode-emoji (~> 4.1)
368
+ unicode-emoji (4.2.0)
369
+ uri (1.1.1)
357
370
  useragent (0.16.11)
358
371
  w_syntax_tree-erb (0.12.0)
359
372
  prettier_print (~> 1.2, >= 1.2.0)
360
373
  syntax_tree (~> 6.1, >= 6.1.1)
361
- webmock (3.25.1)
374
+ webmock (3.26.2)
362
375
  addressable (>= 2.8.0)
363
376
  crack (>= 0.3.2)
364
377
  hashdiff (>= 0.4.0, < 2.0.0)
365
- websocket-driver (0.7.7)
378
+ websocket-driver (0.8.2)
366
379
  base64
367
380
  websocket-extensions (>= 0.1.0)
368
381
  websocket-extensions (0.1.5)
369
382
  yaml (0.4.0)
370
- zeitwerk (2.7.2)
383
+ zeitwerk (2.8.2)
371
384
 
372
385
  PLATFORMS
373
386
  arm64-darwin-23
374
387
  arm64-darwin-24
388
+ arm64-darwin-25
375
389
  x86_64-linux
376
390
 
377
391
  DEPENDENCIES
@@ -392,7 +406,7 @@ DEPENDENCIES
392
406
  webmock
393
407
 
394
408
  RUBY VERSION
395
- ruby 3.4.2p28
409
+ ruby 4.0.5
396
410
 
397
411
  BUNDLED WITH
398
- 2.6.7
412
+ 4.0.15