lumberaxe 0.2.0 → 0.3.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: 0320f36f10b2d057f95eef0ef3e5a83ee46fd481bf00df3175e66fdf395255c0
4
- data.tar.gz: 5b464cd25c1e3f7112743d90a716317731527427f24db0caf41b6225d0e2aa8c
3
+ metadata.gz: 377ae002e7ee67c78ceebab65d76a4dd946e27576547e88592f04083a01ef21b
4
+ data.tar.gz: '0896d0c2c67b90f3a534a440278adaca841541e851fa967dc83a99928aeb3cc2'
5
5
  SHA512:
6
- metadata.gz: 1ba946bc6d9b1c010188dfb0f4082ce0b13362dda89005a74eae6d7f519e8cbf5354613014143d27901b86fdec8ddffc1ebcd4821877b0eca6b52c078a7e2f28
7
- data.tar.gz: da10e94c5a327f92ca70cfa80812c31280ef4d0fcaf4e5d049333277901f85815737c431dbae7d08b3e552b918b25a8f62d96b9d68fad49cf15bd812476d431d
6
+ metadata.gz: 1fea04f90b804609063cf1615759676fe7d12aee0f452b5706c5f9fcc662779b523b279d0b3302da1af0427a027c71ffd97ab04d40921f9296009833cf9a2391
7
+ data.tar.gz: a248d8a64464b394f7a210533dcf9e06b3fd75a8dcd64e1cd8531a75bfa0d607285c7a0c71317c30a73105ffa0fdc9bcbce09674a5dbb9b40ea115a60a64258e
data/.rubocop.yml CHANGED
@@ -6,13 +6,5 @@ require:
6
6
  AllCops:
7
7
  TargetRubyVersion: 3.0
8
8
 
9
- Style/FrozenStringLiteralComment:
10
- Exclude:
11
- - 'gemfiles/*'
12
-
13
- Bundler/OrderedGems:
14
- Exclude:
15
- - 'gemfiles/*'
16
-
17
9
  Rails:
18
10
  Enabled: false
data/Appraisals CHANGED
@@ -1,21 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise "rails-6-1" do
4
- gem "rails", "6.1.7.7"
5
- gem "rspec-rails", "~> 6.1.5"
6
- end
7
-
8
- appraise "rails-7-0" do
9
- gem "rails", "7.0.8.7"
10
- gem "rspec-rails", "~> 7.1.1"
11
- end
12
-
13
3
  appraise "rails-7-1" do
14
4
  gem "rails", "7.1.3.2"
15
5
  gem "rspec-rails", "~> 7.1.1"
6
+ gem "sqlite3", "~> 1.7.3"
16
7
  end
17
8
 
18
9
  appraise "rails-7-2" do
19
- gem "rails", "7.2.0"
10
+ gem "rails", "7.2.3.1"
11
+ gem "rspec-rails", "~> 8.0.1"
12
+ end
13
+
14
+ appraise "rails-8-0" do
15
+ gem "rails", "8.0.5"
16
+ gem "rspec-rails", "~> 8.0.1"
17
+ end
18
+
19
+ appraise "rails-8-1" do
20
+ gem "rails", "8.1.3"
20
21
  gem "rspec-rails", "~> 8.0.1"
21
22
  end
data/Gemfile CHANGED
@@ -11,21 +11,17 @@ gemspec
11
11
  gem "appraisal", "~> 2.5.0"
12
12
  gem "bundler", "~> 2.1"
13
13
  gem "combustion", "~> 1.3"
14
- gem "erb", "< 5"
15
14
  gem "license_finder", ">= 7.0"
16
- gem "net-imap", "< 0.5.0"
17
- gem "nokogiri", "< 1.18.0"
18
15
  gem "parser", ">= 2.5", "!= 2.5.1.1"
19
16
  gem "pry", ">= 0.14.2"
20
17
  gem "pry-byebug", "3.10.1"
21
18
  gem "rails", ">= 6.0.6.1", "< 8"
22
- gem "rainbow", "2.2.2"
19
+ gem "rainbow", "3.1.1"
23
20
  gem "rake", "~> 13.0"
24
21
  gem "rspec", "~> 3.0"
25
22
  gem "rspec-rails", "~> 8.0.1"
26
23
  gem "rubocop-powerhome", path: "../rubocop-powerhome"
27
24
  gem "simplecov", "0.15.1"
28
- gem "sqlite3", "~> 1.7.3"
25
+ gem "sqlite3", "~> 2.9"
29
26
  gem "test-unit", "3.1.5"
30
- gem "yard", "0.9.21"
31
- gem "zeitwerk", "< 2.7.0"
27
+ gem "yard", "0.9.38"
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../rubocop-powerhome
3
3
  specs:
4
- rubocop-powerhome (0.5.5)
5
- rubocop (= 1.74.0)
4
+ rubocop-powerhome (0.7.0)
5
+ rubocop (= 1.82.1)
6
6
  rubocop-performance
7
7
  rubocop-rails
8
8
  rubocop-rake
@@ -11,73 +11,75 @@ PATH
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- lumberaxe (0.2.0)
15
- activesupport (>= 6.0.6.1, < 8)
14
+ lumberaxe (0.3.0)
15
+ activesupport (>= 7.1.3.2, < 8.2)
16
16
  lograge (= 0.10.0)
17
17
 
18
18
  GEM
19
19
  remote: https://rubygems.org/
20
20
  specs:
21
- actioncable (7.2.2.2)
22
- actionpack (= 7.2.2.2)
23
- activesupport (= 7.2.2.2)
21
+ actioncable (7.2.3.1)
22
+ actionpack (= 7.2.3.1)
23
+ activesupport (= 7.2.3.1)
24
24
  nio4r (~> 2.0)
25
25
  websocket-driver (>= 0.6.1)
26
26
  zeitwerk (~> 2.6)
27
- actionmailbox (7.2.2.2)
28
- actionpack (= 7.2.2.2)
29
- activejob (= 7.2.2.2)
30
- activerecord (= 7.2.2.2)
31
- activestorage (= 7.2.2.2)
32
- activesupport (= 7.2.2.2)
27
+ actionmailbox (7.2.3.1)
28
+ actionpack (= 7.2.3.1)
29
+ activejob (= 7.2.3.1)
30
+ activerecord (= 7.2.3.1)
31
+ activestorage (= 7.2.3.1)
32
+ activesupport (= 7.2.3.1)
33
33
  mail (>= 2.8.0)
34
- actionmailer (7.2.2.2)
35
- actionpack (= 7.2.2.2)
36
- actionview (= 7.2.2.2)
37
- activejob (= 7.2.2.2)
38
- activesupport (= 7.2.2.2)
34
+ actionmailer (7.2.3.1)
35
+ actionpack (= 7.2.3.1)
36
+ actionview (= 7.2.3.1)
37
+ activejob (= 7.2.3.1)
38
+ activesupport (= 7.2.3.1)
39
39
  mail (>= 2.8.0)
40
40
  rails-dom-testing (~> 2.2)
41
- actionpack (7.2.2.2)
42
- actionview (= 7.2.2.2)
43
- activesupport (= 7.2.2.2)
41
+ actionpack (7.2.3.1)
42
+ actionview (= 7.2.3.1)
43
+ activesupport (= 7.2.3.1)
44
+ cgi
44
45
  nokogiri (>= 1.8.5)
45
46
  racc
46
- rack (>= 2.2.4, < 3.2)
47
+ rack (>= 2.2.4, < 3.3)
47
48
  rack-session (>= 1.0.1)
48
49
  rack-test (>= 0.6.3)
49
50
  rails-dom-testing (~> 2.2)
50
51
  rails-html-sanitizer (~> 1.6)
51
52
  useragent (~> 0.16)
52
- actiontext (7.2.2.2)
53
- actionpack (= 7.2.2.2)
54
- activerecord (= 7.2.2.2)
55
- activestorage (= 7.2.2.2)
56
- activesupport (= 7.2.2.2)
53
+ actiontext (7.2.3.1)
54
+ actionpack (= 7.2.3.1)
55
+ activerecord (= 7.2.3.1)
56
+ activestorage (= 7.2.3.1)
57
+ activesupport (= 7.2.3.1)
57
58
  globalid (>= 0.6.0)
58
59
  nokogiri (>= 1.8.5)
59
- actionview (7.2.2.2)
60
- activesupport (= 7.2.2.2)
60
+ actionview (7.2.3.1)
61
+ activesupport (= 7.2.3.1)
61
62
  builder (~> 3.1)
63
+ cgi
62
64
  erubi (~> 1.11)
63
65
  rails-dom-testing (~> 2.2)
64
66
  rails-html-sanitizer (~> 1.6)
65
- activejob (7.2.2.2)
66
- activesupport (= 7.2.2.2)
67
+ activejob (7.2.3.1)
68
+ activesupport (= 7.2.3.1)
67
69
  globalid (>= 0.3.6)
68
- activemodel (7.2.2.2)
69
- activesupport (= 7.2.2.2)
70
- activerecord (7.2.2.2)
71
- activemodel (= 7.2.2.2)
72
- activesupport (= 7.2.2.2)
70
+ activemodel (7.2.3.1)
71
+ activesupport (= 7.2.3.1)
72
+ activerecord (7.2.3.1)
73
+ activemodel (= 7.2.3.1)
74
+ activesupport (= 7.2.3.1)
73
75
  timeout (>= 0.4.0)
74
- activestorage (7.2.2.2)
75
- actionpack (= 7.2.2.2)
76
- activejob (= 7.2.2.2)
77
- activerecord (= 7.2.2.2)
78
- activesupport (= 7.2.2.2)
76
+ activestorage (7.2.3.1)
77
+ actionpack (= 7.2.3.1)
78
+ activejob (= 7.2.3.1)
79
+ activerecord (= 7.2.3.1)
80
+ activesupport (= 7.2.3.1)
79
81
  marcel (~> 1.0)
80
- activesupport (7.2.2.2)
82
+ activesupport (7.2.3.1)
81
83
  base64
82
84
  benchmark (>= 0.3)
83
85
  bigdecimal
@@ -86,47 +88,47 @@ GEM
86
88
  drb
87
89
  i18n (>= 1.6, < 2)
88
90
  logger (>= 1.4.2)
89
- minitest (>= 5.1)
91
+ minitest (>= 5.1, < 6)
90
92
  securerandom (>= 0.3)
91
93
  tzinfo (~> 2.0, >= 2.0.5)
92
94
  appraisal (2.5.0)
93
95
  bundler
94
96
  rake
95
97
  thor (>= 0.14.0)
96
- ast (2.4.2)
97
- base64 (0.2.0)
98
- benchmark (0.4.0)
99
- bigdecimal (3.1.9)
98
+ ast (2.4.3)
99
+ base64 (0.3.0)
100
+ benchmark (0.5.0)
101
+ bigdecimal (4.1.2)
100
102
  builder (3.3.0)
101
103
  byebug (11.1.3)
102
- cgi (0.5.0)
104
+ cgi (0.5.1)
103
105
  coderay (1.1.3)
104
106
  combustion (1.5.0)
105
107
  activesupport (>= 3.0.0)
106
108
  railties (>= 3.0.0)
107
109
  thor (>= 0.14.6)
108
- concurrent-ruby (1.3.5)
109
- connection_pool (2.5.0)
110
+ concurrent-ruby (1.3.6)
111
+ connection_pool (3.0.2)
110
112
  crass (1.0.6)
111
- csv (3.3.2)
112
- date (3.4.1)
113
- diff-lcs (1.5.1)
113
+ csv (3.3.5)
114
+ date (3.5.1)
115
+ diff-lcs (1.6.2)
114
116
  docile (1.1.5)
115
- drb (2.2.1)
116
- erb (4.0.4)
117
- cgi (>= 0.3.3)
117
+ drb (2.2.3)
118
+ erb (6.0.4)
118
119
  erubi (1.13.1)
119
- globalid (1.2.1)
120
+ globalid (1.3.0)
120
121
  activesupport (>= 6.1)
121
- i18n (1.14.7)
122
+ i18n (1.14.8)
122
123
  concurrent-ruby (~> 1.0)
123
- io-console (0.8.0)
124
- irb (1.15.1)
124
+ io-console (0.8.2)
125
+ irb (1.18.0)
125
126
  pp (>= 0.6.0)
127
+ prism (>= 1.3.0)
126
128
  rdoc (>= 4.0.0)
127
129
  reline (>= 0.4.2)
128
- json (2.9.1)
129
- language_server-protocol (3.17.0.3)
130
+ json (2.19.3)
131
+ language_server-protocol (3.17.0.5)
130
132
  license_finder (7.2.1)
131
133
  bundler
132
134
  csv (~> 3.2)
@@ -136,130 +138,135 @@ GEM
136
138
  with_env (= 1.1.0)
137
139
  xml-simple (~> 1.1.9)
138
140
  lint_roller (1.1.0)
139
- logger (1.6.5)
141
+ logger (1.7.0)
140
142
  lograge (0.10.0)
141
143
  actionpack (>= 4)
142
144
  activesupport (>= 4)
143
145
  railties (>= 4)
144
146
  request_store (~> 1.0)
145
- loofah (2.24.0)
147
+ loofah (2.25.1)
146
148
  crass (~> 1.0.2)
147
149
  nokogiri (>= 1.12.0)
148
- mail (2.8.1)
150
+ mail (2.9.0)
151
+ logger
149
152
  mini_mime (>= 0.1.1)
150
153
  net-imap
151
154
  net-pop
152
155
  net-smtp
153
- marcel (1.0.4)
156
+ marcel (1.1.0)
154
157
  method_source (1.1.0)
155
158
  mini_mime (1.1.5)
156
- mini_portile2 (2.8.8)
157
- minitest (5.25.4)
158
- net-imap (0.4.18)
159
+ mini_portile2 (2.8.9)
160
+ minitest (5.27.0)
161
+ net-imap (0.6.3)
159
162
  date
160
163
  net-protocol
161
164
  net-pop (0.1.2)
162
165
  net-protocol
163
166
  net-protocol (0.2.2)
164
167
  timeout
165
- net-smtp (0.5.0)
168
+ net-smtp (0.5.1)
166
169
  net-protocol
167
- nio4r (2.7.4)
168
- nokogiri (1.17.2)
170
+ nio4r (2.7.5)
171
+ nokogiri (1.19.3)
169
172
  mini_portile2 (~> 2.8.2)
170
173
  racc (~> 1.4)
171
- nokogiri (1.17.2-arm64-darwin)
174
+ nokogiri (1.19.3-arm64-darwin)
172
175
  racc (~> 1.4)
173
- nokogiri (1.17.2-x86_64-linux)
176
+ nokogiri (1.19.3-x86_64-linux-gnu)
174
177
  racc (~> 1.4)
175
- parallel (1.26.3)
176
- parser (3.3.7.0)
178
+ parallel (1.28.0)
179
+ parser (3.3.11.1)
177
180
  ast (~> 2.4.1)
178
181
  racc
179
- power_assert (2.0.5)
180
- pp (0.6.2)
182
+ power_assert (3.0.1)
183
+ pp (0.6.3)
181
184
  prettyprint
182
185
  prettyprint (0.2.0)
186
+ prism (1.9.0)
183
187
  pry (0.14.2)
184
188
  coderay (~> 1.1)
185
189
  method_source (~> 1.0)
186
190
  pry-byebug (3.10.1)
187
191
  byebug (~> 11.0)
188
192
  pry (>= 0.13, < 0.15)
189
- psych (5.2.3)
193
+ psych (5.3.1)
190
194
  date
191
195
  stringio
192
196
  racc (1.8.1)
193
- rack (3.1.8)
194
- rack-session (2.1.0)
197
+ rack (3.2.6)
198
+ rack-session (2.1.2)
195
199
  base64 (>= 0.1.0)
196
200
  rack (>= 3.0.0)
197
201
  rack-test (2.2.0)
198
202
  rack (>= 1.3)
199
- rackup (2.2.1)
203
+ rackup (2.3.1)
200
204
  rack (>= 3)
201
- rails (7.2.2.2)
202
- actioncable (= 7.2.2.2)
203
- actionmailbox (= 7.2.2.2)
204
- actionmailer (= 7.2.2.2)
205
- actionpack (= 7.2.2.2)
206
- actiontext (= 7.2.2.2)
207
- actionview (= 7.2.2.2)
208
- activejob (= 7.2.2.2)
209
- activemodel (= 7.2.2.2)
210
- activerecord (= 7.2.2.2)
211
- activestorage (= 7.2.2.2)
212
- activesupport (= 7.2.2.2)
205
+ rails (7.2.3.1)
206
+ actioncable (= 7.2.3.1)
207
+ actionmailbox (= 7.2.3.1)
208
+ actionmailer (= 7.2.3.1)
209
+ actionpack (= 7.2.3.1)
210
+ actiontext (= 7.2.3.1)
211
+ actionview (= 7.2.3.1)
212
+ activejob (= 7.2.3.1)
213
+ activemodel (= 7.2.3.1)
214
+ activerecord (= 7.2.3.1)
215
+ activestorage (= 7.2.3.1)
216
+ activesupport (= 7.2.3.1)
213
217
  bundler (>= 1.15.0)
214
- railties (= 7.2.2.2)
215
- rails-dom-testing (2.2.0)
218
+ railties (= 7.2.3.1)
219
+ rails-dom-testing (2.3.0)
216
220
  activesupport (>= 5.0.0)
217
221
  minitest
218
222
  nokogiri (>= 1.6)
219
- rails-html-sanitizer (1.6.2)
220
- loofah (~> 2.21)
223
+ rails-html-sanitizer (1.7.0)
224
+ loofah (~> 2.25)
221
225
  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)
222
- railties (7.2.2.2)
223
- actionpack (= 7.2.2.2)
224
- activesupport (= 7.2.2.2)
226
+ railties (7.2.3.1)
227
+ actionpack (= 7.2.3.1)
228
+ activesupport (= 7.2.3.1)
229
+ cgi
225
230
  irb (~> 1.13)
226
231
  rackup (>= 1.0.0)
227
232
  rake (>= 12.2)
228
233
  thor (~> 1.0, >= 1.2.2)
234
+ tsort (>= 0.2)
229
235
  zeitwerk (~> 2.6)
230
- rainbow (2.2.2)
231
- rake
232
- rake (13.2.1)
233
- rdoc (6.11.0)
236
+ rainbow (3.1.1)
237
+ rake (13.4.2)
238
+ rdoc (7.2.0)
239
+ erb
234
240
  psych (>= 4.0.0)
235
- regexp_parser (2.10.0)
236
- reline (0.6.0)
241
+ tsort
242
+ regexp_parser (2.12.0)
243
+ reline (0.6.3)
237
244
  io-console (~> 0.5)
238
245
  request_store (1.7.0)
239
246
  rack (>= 1.4)
240
- rexml (3.4.0)
241
- rspec (3.13.0)
247
+ rexml (3.4.4)
248
+ rspec (3.13.2)
242
249
  rspec-core (~> 3.13.0)
243
250
  rspec-expectations (~> 3.13.0)
244
251
  rspec-mocks (~> 3.13.0)
245
- rspec-core (3.13.2)
252
+ rspec-core (3.13.6)
246
253
  rspec-support (~> 3.13.0)
247
- rspec-expectations (3.13.3)
254
+ rspec-expectations (3.13.5)
248
255
  diff-lcs (>= 1.2.0, < 2.0)
249
256
  rspec-support (~> 3.13.0)
250
- rspec-mocks (3.13.2)
257
+ rspec-mocks (3.13.8)
251
258
  diff-lcs (>= 1.2.0, < 2.0)
252
259
  rspec-support (~> 3.13.0)
253
- rspec-rails (8.0.2)
260
+ rspec-rails (8.0.4)
254
261
  actionpack (>= 7.2)
255
262
  activesupport (>= 7.2)
256
263
  railties (>= 7.2)
257
- rspec-core (~> 3.13)
258
- rspec-expectations (~> 3.13)
259
- rspec-mocks (~> 3.13)
260
- rspec-support (~> 3.13)
261
- rspec-support (3.13.2)
262
- rubocop (1.74.0)
264
+ rspec-core (>= 3.13.0, < 5.0.0)
265
+ rspec-expectations (>= 3.13.0, < 5.0.0)
266
+ rspec-mocks (>= 3.13.0, < 5.0.0)
267
+ rspec-support (>= 3.13.0, < 5.0.0)
268
+ rspec-support (3.13.7)
269
+ rubocop (1.82.1)
263
270
  json (~> 2.3)
264
271
  language_server-protocol (~> 3.17.0.2)
265
272
  lint_roller (~> 1.1.0)
@@ -267,23 +274,28 @@ GEM
267
274
  parser (>= 3.3.0.2)
268
275
  rainbow (>= 2.2.2, < 4.0)
269
276
  regexp_parser (>= 2.9.3, < 3.0)
270
- rubocop-ast (>= 1.38.0, < 2.0)
277
+ rubocop-ast (>= 1.48.0, < 2.0)
271
278
  ruby-progressbar (~> 1.7)
272
279
  unicode-display_width (>= 2.4.0, < 4.0)
273
- rubocop-ast (1.39.0)
274
- parser (>= 3.3.1.0)
275
- rubocop-performance (1.23.1)
276
- rubocop (>= 1.48.1, < 2.0)
277
- rubocop-ast (>= 1.31.1, < 2.0)
278
- rubocop-rails (2.29.1)
280
+ rubocop-ast (1.49.1)
281
+ parser (>= 3.3.7.2)
282
+ prism (~> 1.7)
283
+ rubocop-performance (1.26.1)
284
+ lint_roller (~> 1.1)
285
+ rubocop (>= 1.75.0, < 2.0)
286
+ rubocop-ast (>= 1.47.1, < 2.0)
287
+ rubocop-rails (2.34.3)
279
288
  activesupport (>= 4.2.0)
289
+ lint_roller (~> 1.1)
280
290
  rack (>= 1.1)
281
- rubocop (>= 1.52.0, < 2.0)
282
- rubocop-ast (>= 1.31.1, < 2.0)
283
- rubocop-rake (0.6.0)
284
- rubocop (~> 1.0)
285
- rubocop-rspec (3.4.0)
286
- rubocop (~> 1.61)
291
+ rubocop (>= 1.75.0, < 2.0)
292
+ rubocop-ast (>= 1.44.0, < 2.0)
293
+ rubocop-rake (0.7.1)
294
+ lint_roller (~> 1.1)
295
+ rubocop (>= 1.72.1)
296
+ rubocop-rspec (3.9.0)
297
+ lint_roller (~> 1.1)
298
+ rubocop (~> 1.81)
287
299
  ruby-progressbar (1.13.0)
288
300
  rubyzip (2.4.1)
289
301
  securerandom (0.4.1)
@@ -292,29 +304,32 @@ GEM
292
304
  json (>= 1.8, < 3)
293
305
  simplecov-html (~> 0.10.0)
294
306
  simplecov-html (0.10.2)
295
- sqlite3 (1.7.3)
307
+ sqlite3 (2.9.2)
296
308
  mini_portile2 (~> 2.8.0)
297
- sqlite3 (1.7.3-arm64-darwin)
298
- sqlite3 (1.7.3-x86_64-linux)
299
- stringio (3.1.2)
309
+ sqlite3 (2.9.2-arm64-darwin)
310
+ sqlite3 (2.9.2-x86_64-linux-gnu)
311
+ stringio (3.2.0)
300
312
  test-unit (3.1.5)
301
313
  power_assert
302
- thor (1.3.2)
303
- timeout (0.4.3)
304
- tomlrb (2.0.3)
314
+ thor (1.5.0)
315
+ timeout (0.6.1)
316
+ tomlrb (2.0.4)
317
+ tsort (0.2.0)
305
318
  tzinfo (2.0.6)
306
319
  concurrent-ruby (~> 1.0)
307
- unicode-display_width (2.6.0)
320
+ unicode-display_width (3.2.0)
321
+ unicode-emoji (~> 4.1)
322
+ unicode-emoji (4.2.0)
308
323
  useragent (0.16.11)
309
- websocket-driver (0.7.7)
324
+ websocket-driver (0.8.0)
310
325
  base64
311
326
  websocket-extensions (>= 0.1.0)
312
327
  websocket-extensions (0.1.5)
313
328
  with_env (1.1.0)
314
329
  xml-simple (1.1.9)
315
330
  rexml
316
- yard (0.9.21)
317
- zeitwerk (2.6.18)
331
+ yard (0.9.38)
332
+ zeitwerk (2.7.5)
318
333
 
319
334
  PLATFORMS
320
335
  arm64-darwin-22
@@ -325,25 +340,21 @@ DEPENDENCIES
325
340
  appraisal (~> 2.5.0)
326
341
  bundler (~> 2.1)
327
342
  combustion (~> 1.3)
328
- erb (< 5)
329
343
  license_finder (>= 7.0)
330
344
  lumberaxe!
331
- net-imap (< 0.5.0)
332
- nokogiri (< 1.18.0)
333
345
  parser (>= 2.5, != 2.5.1.1)
334
346
  pry (>= 0.14.2)
335
347
  pry-byebug (= 3.10.1)
336
348
  rails (>= 6.0.6.1, < 8)
337
- rainbow (= 2.2.2)
349
+ rainbow (= 3.1.1)
338
350
  rake (~> 13.0)
339
351
  rspec (~> 3.0)
340
352
  rspec-rails (~> 8.0.1)
341
353
  rubocop-powerhome!
342
354
  simplecov (= 0.15.1)
343
- sqlite3 (~> 1.7.3)
355
+ sqlite3 (~> 2.9)
344
356
  test-unit (= 3.1.5)
345
- yard (= 0.9.21)
346
- zeitwerk (< 2.7.0)
357
+ yard (= 0.9.38)
347
358
 
348
359
  BUNDLED WITH
349
360
  2.5.23
data/docs/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.0] - 2026-07-28
4
+
5
+ [HFH-4410 - Bump powertools for Rails 8.1.3 V2](https://github.com/powerhome/power-tools/pull/426)
6
+
7
+ - Upgrade Rails to 8.1.3 for Nitro and Runway compatability
8
+ - Drop support for Ruby < 3.3 and Rails < 7.1 [#396](https://github.com/powerhome/power-tools/pull/396)
9
+ - Update yard to 0.9.38 to address [Cross-site Scripting vulnerability](https://github.com/powerhome/power-tools/security/dependabot/544) [#394](https://github.com/powerhome/power-tools/pull/394)
10
+ - Update rainbow to v3.x [#372](https://github.com/powerhome/power-tools/pull/372)
11
+ - Update Rails version to 7.2.3.1 for Active Storage CVE [#402](https://github.com/powerhome/power-tools/pull/402)
12
+
3
13
  ## [0.2.0] - 2025-08-15
4
14
 
5
15
  - Standardize all libs to support ruby 3.0, ruby 3.3 x rails 6.1 through rails 7.2 [#359](https://github.com/powerhome/power-tools/pull/359)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # This file was generated by Appraisal
2
4
 
3
5
  source "https://rubygems.org"
@@ -5,15 +7,12 @@ source "https://rubygems.org"
5
7
  gem "appraisal", "~> 2.5.0"
6
8
  gem "bundler", "~> 2.1"
7
9
  gem "combustion", "~> 1.3"
8
- gem "erb", "< 5"
9
10
  gem "license_finder", ">= 7.0"
10
- gem "net-imap", "< 0.5.0"
11
- gem "nokogiri", "< 1.18.0"
12
11
  gem "parser", ">= 2.5", "!= 2.5.1.1"
13
12
  gem "pry", ">= 0.14.2"
14
13
  gem "pry-byebug", "3.10.1"
15
14
  gem "rails", "7.1.3.2"
16
- gem "rainbow", "2.2.2"
15
+ gem "rainbow", "3.1.1"
17
16
  gem "rake", "~> 13.0"
18
17
  gem "rspec", "~> 3.0"
19
18
  gem "rspec-rails", "~> 7.1.1"
@@ -21,7 +20,6 @@ gem "rubocop-powerhome", path: "../../rubocop-powerhome"
21
20
  gem "simplecov", "0.15.1"
22
21
  gem "sqlite3", "~> 1.7.3"
23
22
  gem "test-unit", "3.1.5"
24
- gem "yard", "0.9.21"
25
- gem "zeitwerk", "< 2.7.0"
23
+ gem "yard", "0.9.38"
26
24
 
27
25
  gemspec path: "../"