rubocop-powerhome 0.5.5 → 0.5.6
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/Appraisals +8 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +21 -12
- data/gemfiles/rails_6_0.gemfile +3 -1
- data/gemfiles/rails_6_1.gemfile +6 -1
- data/gemfiles/rails_6_1.gemfile.lock +66 -47
- data/gemfiles/rails_7_0.gemfile +6 -1
- data/gemfiles/rails_7_0.gemfile.lock +63 -46
- data/gemfiles/rails_7_1.gemfile +14 -0
- data/gemfiles/rails_7_1.gemfile.lock +321 -0
- data/gemfiles/rails_7_2.gemfile +14 -0
- data/gemfiles/rails_7_2.gemfile.lock +315 -0
- data/lib/rubocop/cop/style/no_helpers.rb +1 -1
- data/lib/rubocop/powerhome/version.rb +1 -1
- metadata +14 -8
- data/rubocop-powerhome.gemspec +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d3ed7ee56351cc9894fa68cb82e9b4b17a309cac16910d6a237f26ee28539d7
|
4
|
+
data.tar.gz: 971a9b48aa90dd3d92b807e432c580a748693411595dc3076ad800ea1f87e709
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0f99158606622afed5ce55715b872f2a81191b7e1fe96b6f326e23bffafd6d75071e99c9a24fe187c7edfb73457c0279a113eff8d95ac70930ca4d8f9d35047
|
7
|
+
data.tar.gz: 740955cc7094fba7f8be84dd0450dd1046ecf0012d553eab06804967b4a0f01230d67f7a4b2d9ff5aa148243bfa74c201441cac75f4e9328f19cd9121cbb4e46
|
data/Appraisals
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
appraise "rails-6-0" do
|
4
|
-
gem "rails", "6.0.6.1"
|
5
|
-
end
|
6
|
-
|
7
3
|
appraise "rails-6-1" do
|
8
4
|
gem "rails", "6.1.7.7"
|
9
5
|
end
|
@@ -11,3 +7,11 @@ end
|
|
11
7
|
appraise "rails-7-0" do
|
12
8
|
gem "rails", "7.0.8.1"
|
13
9
|
end
|
10
|
+
|
11
|
+
appraise "rails-7-1" do
|
12
|
+
gem "rails", "7.1.5.2"
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise "rails-7-2" do
|
16
|
+
gem "rails", "7.2.2.2"
|
17
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
- 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)
|
4
|
+
|
5
|
+
## [0.5.6] - 2025-09-09
|
6
|
+
|
7
|
+
- Bump Rubocop version to unblock dependabot in repos
|
8
|
+
|
3
9
|
## [0.5.5] - 2025-04-22
|
4
10
|
|
5
11
|
- Fix Rubocop base class inheritance [#323](https://github.com/powerhome/power-tools/pull/323)
|
@@ -24,10 +30,12 @@
|
|
24
30
|
- Ignore Metrics/BlockLength on Rspec's context and describe (#43)
|
25
31
|
|
26
32
|
### Documentation
|
33
|
+
|
27
34
|
- Fix rel links in README (#37)
|
28
35
|
- Initial portal setup (#34)
|
29
36
|
|
30
37
|
### Updates
|
38
|
+
|
31
39
|
- Lock file maintenance
|
32
40
|
- Update tj-actions/changed-files action to v24 (#47)
|
33
41
|
- Update dependency rubocop to ~> 1.32.0 (#46)
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rubocop-powerhome (0.5.
|
5
|
-
rubocop (= 1.
|
4
|
+
rubocop-powerhome (0.5.6)
|
5
|
+
rubocop (= 1.75.0)
|
6
6
|
rubocop-performance
|
7
7
|
rubocop-rails
|
8
8
|
rubocop-rake
|
@@ -84,12 +84,15 @@ GEM
|
|
84
84
|
base64 (0.2.0)
|
85
85
|
builder (3.3.0)
|
86
86
|
byebug (11.1.3)
|
87
|
+
cgi (0.5.0)
|
87
88
|
coderay (1.1.3)
|
88
89
|
concurrent-ruby (1.3.5)
|
89
90
|
crass (1.0.6)
|
90
91
|
csv (3.3.2)
|
91
92
|
date (3.4.1)
|
92
93
|
diff-lcs (1.5.1)
|
94
|
+
erb (4.0.4)
|
95
|
+
cgi (>= 0.3.3)
|
93
96
|
erubi (1.13.1)
|
94
97
|
globalid (1.2.1)
|
95
98
|
activesupport (>= 6.1)
|
@@ -117,7 +120,7 @@ GEM
|
|
117
120
|
marcel (1.0.4)
|
118
121
|
method_source (1.1.0)
|
119
122
|
mini_mime (1.1.5)
|
120
|
-
mini_portile2 (2.8.
|
123
|
+
mini_portile2 (2.8.9)
|
121
124
|
minitest (5.25.4)
|
122
125
|
net-imap (0.4.18)
|
123
126
|
date
|
@@ -129,17 +132,18 @@ GEM
|
|
129
132
|
net-smtp (0.5.0)
|
130
133
|
net-protocol
|
131
134
|
nio4r (2.7.4)
|
132
|
-
nokogiri (1.
|
135
|
+
nokogiri (1.17.2)
|
133
136
|
mini_portile2 (~> 2.8.2)
|
134
137
|
racc (~> 1.4)
|
135
|
-
nokogiri (1.
|
138
|
+
nokogiri (1.17.2-arm64-darwin)
|
136
139
|
racc (~> 1.4)
|
137
|
-
nokogiri (1.
|
140
|
+
nokogiri (1.17.2-x86_64-linux)
|
138
141
|
racc (~> 1.4)
|
139
142
|
parallel (1.26.3)
|
140
|
-
parser (3.3.
|
143
|
+
parser (3.3.9.0)
|
141
144
|
ast (~> 2.4.1)
|
142
145
|
racc
|
146
|
+
prism (1.4.0)
|
143
147
|
pry (0.14.2)
|
144
148
|
coderay (~> 1.1)
|
145
149
|
method_source (~> 1.0)
|
@@ -195,7 +199,7 @@ GEM
|
|
195
199
|
diff-lcs (>= 1.2.0, < 2.0)
|
196
200
|
rspec-support (~> 3.13.0)
|
197
201
|
rspec-support (3.13.2)
|
198
|
-
rubocop (1.
|
202
|
+
rubocop (1.75.0)
|
199
203
|
json (~> 2.3)
|
200
204
|
language_server-protocol (~> 3.17.0.2)
|
201
205
|
lint_roller (~> 1.1.0)
|
@@ -203,11 +207,12 @@ GEM
|
|
203
207
|
parser (>= 3.3.0.2)
|
204
208
|
rainbow (>= 2.2.2, < 4.0)
|
205
209
|
regexp_parser (>= 2.9.3, < 3.0)
|
206
|
-
rubocop-ast (>= 1.
|
210
|
+
rubocop-ast (>= 1.43.0, < 2.0)
|
207
211
|
ruby-progressbar (~> 1.7)
|
208
212
|
unicode-display_width (>= 2.4.0, < 4.0)
|
209
|
-
rubocop-ast (1.
|
210
|
-
parser (>= 3.3.
|
213
|
+
rubocop-ast (1.46.0)
|
214
|
+
parser (>= 3.3.7.2)
|
215
|
+
prism (~> 1.4)
|
211
216
|
rubocop-performance (1.23.1)
|
212
217
|
rubocop (>= 1.48.1, < 2.0)
|
213
218
|
rubocop-ast (>= 1.31.1, < 2.0)
|
@@ -222,6 +227,7 @@ GEM
|
|
222
227
|
rubocop (~> 1.61)
|
223
228
|
ruby-progressbar (1.13.0)
|
224
229
|
rubyzip (2.4.1)
|
230
|
+
securerandom (0.3.2)
|
225
231
|
thor (1.3.2)
|
226
232
|
timeout (0.4.3)
|
227
233
|
tomlrb (2.0.3)
|
@@ -244,14 +250,17 @@ PLATFORMS
|
|
244
250
|
|
245
251
|
DEPENDENCIES
|
246
252
|
appraisal (~> 2.5.0)
|
253
|
+
erb (< 5)
|
247
254
|
license_finder (~> 7.0)
|
248
255
|
net-imap (< 0.5.0)
|
256
|
+
nokogiri (< 1.18.0)
|
249
257
|
pry (>= 0.14.2)
|
250
258
|
pry-byebug (= 3.10.1)
|
251
|
-
rails (>= 6.0.6.1, <
|
259
|
+
rails (>= 6.0.6.1, < 8)
|
252
260
|
rake (~> 13.0)
|
253
261
|
rspec (~> 3.0)
|
254
262
|
rubocop-powerhome!
|
263
|
+
securerandom (< 0.4.0)
|
255
264
|
zeitwerk (< 2.7.0)
|
256
265
|
|
257
266
|
BUNDLED WITH
|
data/gemfiles/rails_6_0.gemfile
CHANGED
data/gemfiles/rails_6_1.gemfile
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# This file was generated by Appraisal
|
2
4
|
|
3
5
|
source "https://rubygems.org"
|
4
6
|
|
7
|
+
gem "erb", "< 5"
|
5
8
|
gem "net-imap", "< 0.5.0"
|
6
|
-
gem "
|
9
|
+
gem "nokogiri", "< 1.18.0"
|
7
10
|
gem "rails", "6.1.7.7"
|
11
|
+
gem "securerandom", "< 0.4.0"
|
12
|
+
gem "zeitwerk", "< 2.7.0"
|
8
13
|
|
9
14
|
gemspec path: "../"
|
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-powerhome (0.5.
|
5
|
-
rubocop (= 1.
|
4
|
+
rubocop-powerhome (0.5.6)
|
5
|
+
rubocop (= 1.75.0)
|
6
6
|
rubocop-performance
|
7
7
|
rubocop-rails
|
8
8
|
rubocop-rake
|
@@ -74,22 +74,26 @@ GEM
|
|
74
74
|
bundler
|
75
75
|
rake
|
76
76
|
thor (>= 0.14.0)
|
77
|
-
ast (2.4.
|
77
|
+
ast (2.4.3)
|
78
|
+
base64 (0.3.0)
|
78
79
|
builder (3.3.0)
|
79
80
|
byebug (11.1.3)
|
81
|
+
cgi (0.5.0)
|
80
82
|
coderay (1.1.3)
|
81
|
-
concurrent-ruby (1.3.
|
83
|
+
concurrent-ruby (1.3.5)
|
82
84
|
crass (1.0.6)
|
83
|
-
csv (3.3.
|
85
|
+
csv (3.3.5)
|
84
86
|
date (3.4.1)
|
85
|
-
diff-lcs (1.
|
86
|
-
|
87
|
+
diff-lcs (1.6.2)
|
88
|
+
erb (4.0.4)
|
89
|
+
cgi (>= 0.3.3)
|
90
|
+
erubi (1.13.1)
|
87
91
|
globalid (1.2.1)
|
88
92
|
activesupport (>= 6.1)
|
89
|
-
i18n (1.14.
|
93
|
+
i18n (1.14.7)
|
90
94
|
concurrent-ruby (~> 1.0)
|
91
|
-
json (2.
|
92
|
-
language_server-protocol (3.17.0.
|
95
|
+
json (2.13.2)
|
96
|
+
language_server-protocol (3.17.0.5)
|
93
97
|
license_finder (7.2.1)
|
94
98
|
bundler
|
95
99
|
csv (~> 3.2)
|
@@ -99,7 +103,8 @@ GEM
|
|
99
103
|
with_env (= 1.1.0)
|
100
104
|
xml-simple (~> 1.1.9)
|
101
105
|
lint_roller (1.1.0)
|
102
|
-
|
106
|
+
logger (1.7.0)
|
107
|
+
loofah (2.24.1)
|
103
108
|
crass (~> 1.0.2)
|
104
109
|
nokogiri (>= 1.12.0)
|
105
110
|
mail (2.8.1)
|
@@ -110,16 +115,16 @@ GEM
|
|
110
115
|
marcel (1.0.4)
|
111
116
|
method_source (1.1.0)
|
112
117
|
mini_mime (1.1.5)
|
113
|
-
mini_portile2 (2.8.
|
114
|
-
minitest (5.25.
|
115
|
-
net-imap (0.4.
|
118
|
+
mini_portile2 (2.8.9)
|
119
|
+
minitest (5.25.5)
|
120
|
+
net-imap (0.4.22)
|
116
121
|
date
|
117
122
|
net-protocol
|
118
123
|
net-pop (0.1.2)
|
119
124
|
net-protocol
|
120
125
|
net-protocol (0.2.2)
|
121
126
|
timeout
|
122
|
-
net-smtp (0.5.
|
127
|
+
net-smtp (0.5.1)
|
123
128
|
net-protocol
|
124
129
|
nio4r (2.7.4)
|
125
130
|
nokogiri (1.17.2)
|
@@ -129,10 +134,11 @@ GEM
|
|
129
134
|
racc (~> 1.4)
|
130
135
|
nokogiri (1.17.2-x86_64-linux)
|
131
136
|
racc (~> 1.4)
|
132
|
-
parallel (1.
|
133
|
-
parser (3.3.
|
137
|
+
parallel (1.27.0)
|
138
|
+
parser (3.3.9.0)
|
134
139
|
ast (~> 2.4.1)
|
135
140
|
racc
|
141
|
+
prism (1.4.0)
|
136
142
|
pry (0.14.2)
|
137
143
|
coderay (~> 1.1)
|
138
144
|
method_source (~> 1.0)
|
@@ -140,8 +146,8 @@ GEM
|
|
140
146
|
byebug (~> 11.0)
|
141
147
|
pry (>= 0.13, < 0.15)
|
142
148
|
racc (1.8.1)
|
143
|
-
rack (2.2.
|
144
|
-
rack-test (2.
|
149
|
+
rack (2.2.17)
|
150
|
+
rack-test (2.2.0)
|
145
151
|
rack (>= 1.3)
|
146
152
|
rails (6.1.7.7)
|
147
153
|
actioncable (= 6.1.7.7)
|
@@ -158,7 +164,7 @@ GEM
|
|
158
164
|
bundler (>= 1.15.0)
|
159
165
|
railties (= 6.1.7.7)
|
160
166
|
sprockets-rails (>= 2.0.0)
|
161
|
-
rails-dom-testing (2.
|
167
|
+
rails-dom-testing (2.3.0)
|
162
168
|
activesupport (>= 5.0.0)
|
163
169
|
minitest
|
164
170
|
nokogiri (>= 1.6)
|
@@ -172,23 +178,23 @@ GEM
|
|
172
178
|
rake (>= 12.2)
|
173
179
|
thor (~> 1.0)
|
174
180
|
rainbow (3.1.1)
|
175
|
-
rake (13.
|
176
|
-
regexp_parser (2.
|
177
|
-
rexml (3.4.
|
178
|
-
rspec (3.13.
|
181
|
+
rake (13.3.0)
|
182
|
+
regexp_parser (2.11.2)
|
183
|
+
rexml (3.4.1)
|
184
|
+
rspec (3.13.1)
|
179
185
|
rspec-core (~> 3.13.0)
|
180
186
|
rspec-expectations (~> 3.13.0)
|
181
187
|
rspec-mocks (~> 3.13.0)
|
182
|
-
rspec-core (3.13.
|
188
|
+
rspec-core (3.13.5)
|
183
189
|
rspec-support (~> 3.13.0)
|
184
|
-
rspec-expectations (3.13.
|
190
|
+
rspec-expectations (3.13.5)
|
185
191
|
diff-lcs (>= 1.2.0, < 2.0)
|
186
192
|
rspec-support (~> 3.13.0)
|
187
|
-
rspec-mocks (3.13.
|
193
|
+
rspec-mocks (3.13.5)
|
188
194
|
diff-lcs (>= 1.2.0, < 2.0)
|
189
195
|
rspec-support (~> 3.13.0)
|
190
|
-
rspec-support (3.13.
|
191
|
-
rubocop (1.
|
196
|
+
rspec-support (3.13.4)
|
197
|
+
rubocop (1.75.0)
|
192
198
|
json (~> 2.3)
|
193
199
|
language_server-protocol (~> 3.17.0.2)
|
194
200
|
lint_roller (~> 1.1.0)
|
@@ -196,39 +202,49 @@ GEM
|
|
196
202
|
parser (>= 3.3.0.2)
|
197
203
|
rainbow (>= 2.2.2, < 4.0)
|
198
204
|
regexp_parser (>= 2.9.3, < 3.0)
|
199
|
-
rubocop-ast (>= 1.
|
205
|
+
rubocop-ast (>= 1.43.0, < 2.0)
|
200
206
|
ruby-progressbar (~> 1.7)
|
201
207
|
unicode-display_width (>= 2.4.0, < 4.0)
|
202
|
-
rubocop-ast (1.
|
203
|
-
parser (>= 3.3.
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
+
rubocop-ast (1.46.0)
|
209
|
+
parser (>= 3.3.7.2)
|
210
|
+
prism (~> 1.4)
|
211
|
+
rubocop-performance (1.24.0)
|
212
|
+
lint_roller (~> 1.1)
|
213
|
+
rubocop (>= 1.72.1, < 2.0)
|
214
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
215
|
+
rubocop-rails (2.30.3)
|
208
216
|
activesupport (>= 4.2.0)
|
217
|
+
lint_roller (~> 1.1)
|
209
218
|
rack (>= 1.1)
|
210
|
-
rubocop (>= 1.
|
211
|
-
rubocop-ast (>= 1.
|
212
|
-
rubocop-rake (0.
|
213
|
-
|
214
|
-
|
215
|
-
|
219
|
+
rubocop (>= 1.72.1, < 2.0)
|
220
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
221
|
+
rubocop-rake (0.7.1)
|
222
|
+
lint_roller (~> 1.1)
|
223
|
+
rubocop (>= 1.72.1)
|
224
|
+
rubocop-rspec (3.6.0)
|
225
|
+
lint_roller (~> 1.1)
|
226
|
+
rubocop (~> 1.72, >= 1.72.1)
|
216
227
|
ruby-progressbar (1.13.0)
|
217
|
-
rubyzip (2.
|
218
|
-
|
228
|
+
rubyzip (2.4.1)
|
229
|
+
securerandom (0.3.2)
|
230
|
+
sprockets (4.2.2)
|
219
231
|
concurrent-ruby (~> 1.0)
|
232
|
+
logger
|
220
233
|
rack (>= 2.2.4, < 4)
|
221
234
|
sprockets-rails (3.5.2)
|
222
235
|
actionpack (>= 6.1)
|
223
236
|
activesupport (>= 6.1)
|
224
237
|
sprockets (>= 3.0.0)
|
225
|
-
thor (1.
|
238
|
+
thor (1.4.0)
|
226
239
|
timeout (0.4.3)
|
227
240
|
tomlrb (2.0.3)
|
228
241
|
tzinfo (2.0.6)
|
229
242
|
concurrent-ruby (~> 1.0)
|
230
|
-
unicode-display_width (
|
231
|
-
|
243
|
+
unicode-display_width (3.1.4)
|
244
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
245
|
+
unicode-emoji (4.0.4)
|
246
|
+
websocket-driver (0.8.0)
|
247
|
+
base64
|
232
248
|
websocket-extensions (>= 0.1.0)
|
233
249
|
websocket-extensions (0.1.5)
|
234
250
|
with_env (1.1.0)
|
@@ -243,14 +259,17 @@ PLATFORMS
|
|
243
259
|
|
244
260
|
DEPENDENCIES
|
245
261
|
appraisal (~> 2.5.0)
|
262
|
+
erb (< 5)
|
246
263
|
license_finder (~> 7.0)
|
247
264
|
net-imap (< 0.5.0)
|
265
|
+
nokogiri (< 1.18.0)
|
248
266
|
pry (>= 0.14.2)
|
249
267
|
pry-byebug (= 3.10.1)
|
250
268
|
rails (= 6.1.7.7)
|
251
269
|
rake (~> 13.0)
|
252
270
|
rspec (~> 3.0)
|
253
271
|
rubocop-powerhome!
|
272
|
+
securerandom (< 0.4.0)
|
254
273
|
zeitwerk (< 2.7.0)
|
255
274
|
|
256
275
|
BUNDLED WITH
|
data/gemfiles/rails_7_0.gemfile
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# This file was generated by Appraisal
|
2
4
|
|
3
5
|
source "https://rubygems.org"
|
4
6
|
|
7
|
+
gem "erb", "< 5"
|
5
8
|
gem "net-imap", "< 0.5.0"
|
6
|
-
gem "
|
9
|
+
gem "nokogiri", "< 1.18.0"
|
7
10
|
gem "rails", "7.0.8.1"
|
11
|
+
gem "securerandom", "< 0.4.0"
|
12
|
+
gem "zeitwerk", "< 2.7.0"
|
8
13
|
|
9
14
|
gemspec path: "../"
|
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-powerhome (0.5.
|
5
|
-
rubocop (= 1.
|
4
|
+
rubocop-powerhome (0.5.6)
|
5
|
+
rubocop (= 1.75.0)
|
6
6
|
rubocop-performance
|
7
7
|
rubocop-rails
|
8
8
|
rubocop-rake
|
@@ -80,22 +80,26 @@ GEM
|
|
80
80
|
bundler
|
81
81
|
rake
|
82
82
|
thor (>= 0.14.0)
|
83
|
-
ast (2.4.
|
83
|
+
ast (2.4.3)
|
84
|
+
base64 (0.3.0)
|
84
85
|
builder (3.3.0)
|
85
86
|
byebug (11.1.3)
|
87
|
+
cgi (0.5.0)
|
86
88
|
coderay (1.1.3)
|
87
|
-
concurrent-ruby (1.3.
|
89
|
+
concurrent-ruby (1.3.5)
|
88
90
|
crass (1.0.6)
|
89
|
-
csv (3.3.
|
91
|
+
csv (3.3.5)
|
90
92
|
date (3.4.1)
|
91
|
-
diff-lcs (1.
|
92
|
-
|
93
|
+
diff-lcs (1.6.2)
|
94
|
+
erb (4.0.4)
|
95
|
+
cgi (>= 0.3.3)
|
96
|
+
erubi (1.13.1)
|
93
97
|
globalid (1.2.1)
|
94
98
|
activesupport (>= 6.1)
|
95
|
-
i18n (1.14.
|
99
|
+
i18n (1.14.7)
|
96
100
|
concurrent-ruby (~> 1.0)
|
97
|
-
json (2.
|
98
|
-
language_server-protocol (3.17.0.
|
101
|
+
json (2.13.2)
|
102
|
+
language_server-protocol (3.17.0.5)
|
99
103
|
license_finder (7.2.1)
|
100
104
|
bundler
|
101
105
|
csv (~> 3.2)
|
@@ -105,7 +109,7 @@ GEM
|
|
105
109
|
with_env (= 1.1.0)
|
106
110
|
xml-simple (~> 1.1.9)
|
107
111
|
lint_roller (1.1.0)
|
108
|
-
loofah (2.
|
112
|
+
loofah (2.24.1)
|
109
113
|
crass (~> 1.0.2)
|
110
114
|
nokogiri (>= 1.12.0)
|
111
115
|
mail (2.8.1)
|
@@ -116,16 +120,16 @@ GEM
|
|
116
120
|
marcel (1.0.4)
|
117
121
|
method_source (1.1.0)
|
118
122
|
mini_mime (1.1.5)
|
119
|
-
mini_portile2 (2.8.
|
120
|
-
minitest (5.25.
|
121
|
-
net-imap (0.4.
|
123
|
+
mini_portile2 (2.8.9)
|
124
|
+
minitest (5.25.5)
|
125
|
+
net-imap (0.4.22)
|
122
126
|
date
|
123
127
|
net-protocol
|
124
128
|
net-pop (0.1.2)
|
125
129
|
net-protocol
|
126
130
|
net-protocol (0.2.2)
|
127
131
|
timeout
|
128
|
-
net-smtp (0.5.
|
132
|
+
net-smtp (0.5.1)
|
129
133
|
net-protocol
|
130
134
|
nio4r (2.7.4)
|
131
135
|
nokogiri (1.17.2)
|
@@ -135,10 +139,11 @@ GEM
|
|
135
139
|
racc (~> 1.4)
|
136
140
|
nokogiri (1.17.2-x86_64-linux)
|
137
141
|
racc (~> 1.4)
|
138
|
-
parallel (1.
|
139
|
-
parser (3.3.
|
142
|
+
parallel (1.27.0)
|
143
|
+
parser (3.3.9.0)
|
140
144
|
ast (~> 2.4.1)
|
141
145
|
racc
|
146
|
+
prism (1.4.0)
|
142
147
|
pry (0.14.2)
|
143
148
|
coderay (~> 1.1)
|
144
149
|
method_source (~> 1.0)
|
@@ -146,8 +151,8 @@ GEM
|
|
146
151
|
byebug (~> 11.0)
|
147
152
|
pry (>= 0.13, < 0.15)
|
148
153
|
racc (1.8.1)
|
149
|
-
rack (2.2.
|
150
|
-
rack-test (2.
|
154
|
+
rack (2.2.17)
|
155
|
+
rack-test (2.2.0)
|
151
156
|
rack (>= 1.3)
|
152
157
|
rails (7.0.8.1)
|
153
158
|
actioncable (= 7.0.8.1)
|
@@ -163,7 +168,7 @@ GEM
|
|
163
168
|
activesupport (= 7.0.8.1)
|
164
169
|
bundler (>= 1.15.0)
|
165
170
|
railties (= 7.0.8.1)
|
166
|
-
rails-dom-testing (2.
|
171
|
+
rails-dom-testing (2.3.0)
|
167
172
|
activesupport (>= 5.0.0)
|
168
173
|
minitest
|
169
174
|
nokogiri (>= 1.6)
|
@@ -178,23 +183,23 @@ GEM
|
|
178
183
|
thor (~> 1.0)
|
179
184
|
zeitwerk (~> 2.5)
|
180
185
|
rainbow (3.1.1)
|
181
|
-
rake (13.
|
182
|
-
regexp_parser (2.
|
183
|
-
rexml (3.4.
|
184
|
-
rspec (3.13.
|
186
|
+
rake (13.3.0)
|
187
|
+
regexp_parser (2.11.2)
|
188
|
+
rexml (3.4.1)
|
189
|
+
rspec (3.13.1)
|
185
190
|
rspec-core (~> 3.13.0)
|
186
191
|
rspec-expectations (~> 3.13.0)
|
187
192
|
rspec-mocks (~> 3.13.0)
|
188
|
-
rspec-core (3.13.
|
193
|
+
rspec-core (3.13.5)
|
189
194
|
rspec-support (~> 3.13.0)
|
190
|
-
rspec-expectations (3.13.
|
195
|
+
rspec-expectations (3.13.5)
|
191
196
|
diff-lcs (>= 1.2.0, < 2.0)
|
192
197
|
rspec-support (~> 3.13.0)
|
193
|
-
rspec-mocks (3.13.
|
198
|
+
rspec-mocks (3.13.5)
|
194
199
|
diff-lcs (>= 1.2.0, < 2.0)
|
195
200
|
rspec-support (~> 3.13.0)
|
196
|
-
rspec-support (3.13.
|
197
|
-
rubocop (1.
|
201
|
+
rspec-support (3.13.4)
|
202
|
+
rubocop (1.75.0)
|
198
203
|
json (~> 2.3)
|
199
204
|
language_server-protocol (~> 3.17.0.2)
|
200
205
|
lint_roller (~> 1.1.0)
|
@@ -202,32 +207,41 @@ GEM
|
|
202
207
|
parser (>= 3.3.0.2)
|
203
208
|
rainbow (>= 2.2.2, < 4.0)
|
204
209
|
regexp_parser (>= 2.9.3, < 3.0)
|
205
|
-
rubocop-ast (>= 1.
|
210
|
+
rubocop-ast (>= 1.43.0, < 2.0)
|
206
211
|
ruby-progressbar (~> 1.7)
|
207
212
|
unicode-display_width (>= 2.4.0, < 4.0)
|
208
|
-
rubocop-ast (1.
|
209
|
-
parser (>= 3.3.
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
213
|
+
rubocop-ast (1.46.0)
|
214
|
+
parser (>= 3.3.7.2)
|
215
|
+
prism (~> 1.4)
|
216
|
+
rubocop-performance (1.24.0)
|
217
|
+
lint_roller (~> 1.1)
|
218
|
+
rubocop (>= 1.72.1, < 2.0)
|
219
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
220
|
+
rubocop-rails (2.30.3)
|
214
221
|
activesupport (>= 4.2.0)
|
222
|
+
lint_roller (~> 1.1)
|
215
223
|
rack (>= 1.1)
|
216
|
-
rubocop (>= 1.
|
217
|
-
rubocop-ast (>= 1.
|
218
|
-
rubocop-rake (0.
|
219
|
-
|
220
|
-
|
221
|
-
|
224
|
+
rubocop (>= 1.72.1, < 2.0)
|
225
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
226
|
+
rubocop-rake (0.7.1)
|
227
|
+
lint_roller (~> 1.1)
|
228
|
+
rubocop (>= 1.72.1)
|
229
|
+
rubocop-rspec (3.6.0)
|
230
|
+
lint_roller (~> 1.1)
|
231
|
+
rubocop (~> 1.72, >= 1.72.1)
|
222
232
|
ruby-progressbar (1.13.0)
|
223
|
-
rubyzip (2.
|
224
|
-
|
233
|
+
rubyzip (2.4.1)
|
234
|
+
securerandom (0.3.2)
|
235
|
+
thor (1.4.0)
|
225
236
|
timeout (0.4.3)
|
226
237
|
tomlrb (2.0.3)
|
227
238
|
tzinfo (2.0.6)
|
228
239
|
concurrent-ruby (~> 1.0)
|
229
|
-
unicode-display_width (
|
230
|
-
|
240
|
+
unicode-display_width (3.1.4)
|
241
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
242
|
+
unicode-emoji (4.0.4)
|
243
|
+
websocket-driver (0.8.0)
|
244
|
+
base64
|
231
245
|
websocket-extensions (>= 0.1.0)
|
232
246
|
websocket-extensions (0.1.5)
|
233
247
|
with_env (1.1.0)
|
@@ -242,14 +256,17 @@ PLATFORMS
|
|
242
256
|
|
243
257
|
DEPENDENCIES
|
244
258
|
appraisal (~> 2.5.0)
|
259
|
+
erb (< 5)
|
245
260
|
license_finder (~> 7.0)
|
246
261
|
net-imap (< 0.5.0)
|
262
|
+
nokogiri (< 1.18.0)
|
247
263
|
pry (>= 0.14.2)
|
248
264
|
pry-byebug (= 3.10.1)
|
249
265
|
rails (= 7.0.8.1)
|
250
266
|
rake (~> 13.0)
|
251
267
|
rspec (~> 3.0)
|
252
268
|
rubocop-powerhome!
|
269
|
+
securerandom (< 0.4.0)
|
253
270
|
zeitwerk (< 2.7.0)
|
254
271
|
|
255
272
|
BUNDLED WITH
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file was generated by Appraisal
|
4
|
+
|
5
|
+
source "https://rubygems.org"
|
6
|
+
|
7
|
+
gem "erb", "< 5"
|
8
|
+
gem "net-imap", "< 0.5.0"
|
9
|
+
gem "nokogiri", "< 1.18.0"
|
10
|
+
gem "rails", "7.1.5.2"
|
11
|
+
gem "securerandom", "< 0.4.0"
|
12
|
+
gem "zeitwerk", "< 2.7.0"
|
13
|
+
|
14
|
+
gemspec path: "../"
|