rubocop-powerhome 0.5.0 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4767dc6020167a8b615233306ea599f1c4cf365fd98ea11754d6a2cdc24d2053
4
- data.tar.gz: ecf9e2336b5f5c7e65b41e3de04d0b5aeec78e0f91d58b9508b93b79aef17173
3
+ metadata.gz: ac5e4eab0af574547c14b55b0a0af49a2cba1ef4638d2352fa198f96a1664beb
4
+ data.tar.gz: '019f23b4cb412199c2f5fbbc460a8f2716c064fe3f10feed04150269eb90e5e3'
5
5
  SHA512:
6
- metadata.gz: 8034ef4be62dffc22cc653c6911f81a0cb2cddf3b0f93f380e8a5eabd214834c54c271829a415d005aa60ec55c146be1dfa68db5b1c3ec97cadb57d93ff1343b
7
- data.tar.gz: 0b79e02933282bd833ee4f38aabe65034aa42e2fa8e19241d2eb4b94fc1f574cb2a81c8d76bd752dd28c2ccd5935e67430cbc0aafdfbd4ba49fe43782c55962e
6
+ metadata.gz: 99a117427454441dcc913d36acf8d38ad915efbcc6b12c0ce159dc07ab905bbfad863ac13706585fe41e30ac051c4b824cef4b6683646201b14cf8eadf1c29e2
7
+ data.tar.gz: 18679be9fe4b907abfaee0002e784373e7d48e52766c5909f761a3a762dda573eaf6161d88943165e7afaf6f660cad6f020f50571ba8ee755f12ed953417a250
data/.rubocop.yml CHANGED
@@ -10,5 +10,13 @@ Metrics/BlockLength:
10
10
  - 'spec/**/*'
11
11
  - 'rubocop-powerhome.gemspec'
12
12
 
13
+ Style/FrozenStringLiteralComment:
14
+ Exclude:
15
+ - 'gemfiles/*'
16
+
17
+ Bundler/OrderedGems:
18
+ Exclude:
19
+ - 'gemfiles/*'
20
+
13
21
  Rails:
14
22
  Enabled: false
data/Appraisals ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise "rails-6-0" do
4
+ gem "rails", "6.0.6.1"
5
+ end
6
+
7
+ appraise "rails-6-1" do
8
+ gem "rails", "6.1.7.7"
9
+ end
10
+
11
+ appraise "rails-7-0" do
12
+ gem "rails", "7.0.8.1"
13
+ end
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.5.2] - 2023-02-08
2
+
3
+ - Permit Rubocop upgrades again because bug was fixed.
4
+
5
+ ## [0.5.1] - 2023-02-08
6
+
7
+ - Hold back version of Rubocop that's permitted due to incompatibility with our implementation.
8
+
1
9
  ## [0.5.0] - 2022-07-22
2
10
 
3
11
  ### Features
data/Gemfile CHANGED
@@ -4,11 +4,3 @@ source "https://rubygems.org"
4
4
 
5
5
  # Specify your gem's dependencies in rubocop-powerhome.gemspec
6
6
  gemspec
7
-
8
- gem "rake", "~> 13.0"
9
- gem "rspec", "~> 3.0"
10
- gem "rubocop", "~> 1.32.0"
11
- gem "rubocop-performance"
12
- gem "rubocop-rails"
13
- gem "rubocop-rake"
14
- gem "rubocop-rspec"
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-powerhome (0.5.0)
5
- rubocop
4
+ rubocop-powerhome (0.5.3)
5
+ rubocop (= 1.66.1)
6
6
  rubocop-performance
7
7
  rubocop-rails
8
8
  rubocop-rake
@@ -11,105 +11,244 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activesupport (7.0.3.1)
14
+ actioncable (7.0.8.4)
15
+ actionpack (= 7.0.8.4)
16
+ activesupport (= 7.0.8.4)
17
+ nio4r (~> 2.0)
18
+ websocket-driver (>= 0.6.1)
19
+ actionmailbox (7.0.8.4)
20
+ actionpack (= 7.0.8.4)
21
+ activejob (= 7.0.8.4)
22
+ activerecord (= 7.0.8.4)
23
+ activestorage (= 7.0.8.4)
24
+ activesupport (= 7.0.8.4)
25
+ mail (>= 2.7.1)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ actionmailer (7.0.8.4)
30
+ actionpack (= 7.0.8.4)
31
+ actionview (= 7.0.8.4)
32
+ activejob (= 7.0.8.4)
33
+ activesupport (= 7.0.8.4)
34
+ mail (~> 2.5, >= 2.5.4)
35
+ net-imap
36
+ net-pop
37
+ net-smtp
38
+ rails-dom-testing (~> 2.0)
39
+ actionpack (7.0.8.4)
40
+ actionview (= 7.0.8.4)
41
+ activesupport (= 7.0.8.4)
42
+ rack (~> 2.0, >= 2.2.4)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.0)
45
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
46
+ actiontext (7.0.8.4)
47
+ actionpack (= 7.0.8.4)
48
+ activerecord (= 7.0.8.4)
49
+ activestorage (= 7.0.8.4)
50
+ activesupport (= 7.0.8.4)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.0.8.4)
54
+ activesupport (= 7.0.8.4)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.4)
57
+ rails-dom-testing (~> 2.0)
58
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
59
+ activejob (7.0.8.4)
60
+ activesupport (= 7.0.8.4)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.0.8.4)
63
+ activesupport (= 7.0.8.4)
64
+ activerecord (7.0.8.4)
65
+ activemodel (= 7.0.8.4)
66
+ activesupport (= 7.0.8.4)
67
+ activestorage (7.0.8.4)
68
+ actionpack (= 7.0.8.4)
69
+ activejob (= 7.0.8.4)
70
+ activerecord (= 7.0.8.4)
71
+ activesupport (= 7.0.8.4)
72
+ marcel (~> 1.0)
73
+ mini_mime (>= 1.1.0)
74
+ activesupport (7.0.8.4)
15
75
  concurrent-ruby (~> 1.0, >= 1.0.2)
16
76
  i18n (>= 1.6, < 2)
17
77
  minitest (>= 5.1)
18
78
  tzinfo (~> 2.0)
79
+ appraisal (2.5.0)
80
+ bundler
81
+ rake
82
+ thor (>= 0.14.0)
19
83
  ast (2.4.2)
84
+ builder (3.3.0)
20
85
  byebug (11.1.3)
21
86
  coderay (1.1.3)
22
- concurrent-ruby (1.1.10)
23
- diff-lcs (1.5.0)
24
- i18n (1.12.0)
87
+ concurrent-ruby (1.3.3)
88
+ crass (1.0.6)
89
+ csv (3.3.0)
90
+ date (3.3.4)
91
+ diff-lcs (1.5.1)
92
+ erubi (1.13.0)
93
+ globalid (1.2.1)
94
+ activesupport (>= 6.1)
95
+ i18n (1.14.5)
25
96
  concurrent-ruby (~> 1.0)
26
- json (2.6.2)
27
- license_finder (7.0.1)
97
+ json (2.7.2)
98
+ language_server-protocol (3.17.0.3)
99
+ license_finder (7.2.1)
28
100
  bundler
101
+ csv (~> 3.2)
29
102
  rubyzip (>= 1, < 3)
30
103
  thor (~> 1.2)
31
104
  tomlrb (>= 1.3, < 2.1)
32
105
  with_env (= 1.1.0)
33
106
  xml-simple (~> 1.1.9)
34
- method_source (1.0.0)
35
- minitest (5.16.2)
36
- parallel (1.22.1)
37
- parser (3.1.2.0)
107
+ loofah (2.22.0)
108
+ crass (~> 1.0.2)
109
+ nokogiri (>= 1.12.0)
110
+ mail (2.8.1)
111
+ mini_mime (>= 0.1.1)
112
+ net-imap
113
+ net-pop
114
+ net-smtp
115
+ marcel (1.0.4)
116
+ method_source (1.1.0)
117
+ mini_mime (1.1.5)
118
+ mini_portile2 (2.8.7)
119
+ minitest (5.24.1)
120
+ net-imap (0.4.14)
121
+ date
122
+ net-protocol
123
+ net-pop (0.1.2)
124
+ net-protocol
125
+ net-protocol (0.2.2)
126
+ timeout
127
+ net-smtp (0.5.0)
128
+ net-protocol
129
+ nio4r (2.7.3)
130
+ nokogiri (1.16.7)
131
+ mini_portile2 (~> 2.8.2)
132
+ racc (~> 1.4)
133
+ nokogiri (1.16.7-arm64-darwin)
134
+ racc (~> 1.4)
135
+ nokogiri (1.16.7-x86_64-linux)
136
+ racc (~> 1.4)
137
+ parallel (1.26.3)
138
+ parser (3.3.5.0)
38
139
  ast (~> 2.4.1)
39
- pry (0.13.1)
140
+ racc
141
+ pry (0.14.2)
40
142
  coderay (~> 1.1)
41
143
  method_source (~> 1.0)
42
- pry-byebug (3.9.0)
144
+ pry-byebug (3.10.1)
43
145
  byebug (~> 11.0)
44
- pry (~> 0.13.0)
45
- rack (2.2.4)
146
+ pry (>= 0.13, < 0.15)
147
+ racc (1.8.1)
148
+ rack (2.2.9)
149
+ rack-test (2.1.0)
150
+ rack (>= 1.3)
151
+ rails (7.0.8.4)
152
+ actioncable (= 7.0.8.4)
153
+ actionmailbox (= 7.0.8.4)
154
+ actionmailer (= 7.0.8.4)
155
+ actionpack (= 7.0.8.4)
156
+ actiontext (= 7.0.8.4)
157
+ actionview (= 7.0.8.4)
158
+ activejob (= 7.0.8.4)
159
+ activemodel (= 7.0.8.4)
160
+ activerecord (= 7.0.8.4)
161
+ activestorage (= 7.0.8.4)
162
+ activesupport (= 7.0.8.4)
163
+ bundler (>= 1.15.0)
164
+ railties (= 7.0.8.4)
165
+ rails-dom-testing (2.2.0)
166
+ activesupport (>= 5.0.0)
167
+ minitest
168
+ nokogiri (>= 1.6)
169
+ rails-html-sanitizer (1.6.0)
170
+ loofah (~> 2.21)
171
+ nokogiri (~> 1.14)
172
+ railties (7.0.8.4)
173
+ actionpack (= 7.0.8.4)
174
+ activesupport (= 7.0.8.4)
175
+ method_source
176
+ rake (>= 12.2)
177
+ thor (~> 1.0)
178
+ zeitwerk (~> 2.5)
46
179
  rainbow (3.1.1)
47
- rake (13.0.6)
48
- regexp_parser (2.5.0)
49
- rexml (3.2.5)
50
- rspec (3.11.0)
51
- rspec-core (~> 3.11.0)
52
- rspec-expectations (~> 3.11.0)
53
- rspec-mocks (~> 3.11.0)
54
- rspec-core (3.11.0)
55
- rspec-support (~> 3.11.0)
56
- rspec-expectations (3.11.0)
180
+ rake (13.2.1)
181
+ regexp_parser (2.9.2)
182
+ rexml (3.3.2)
183
+ strscan
184
+ rspec (3.13.0)
185
+ rspec-core (~> 3.13.0)
186
+ rspec-expectations (~> 3.13.0)
187
+ rspec-mocks (~> 3.13.0)
188
+ rspec-core (3.13.0)
189
+ rspec-support (~> 3.13.0)
190
+ rspec-expectations (3.13.1)
57
191
  diff-lcs (>= 1.2.0, < 2.0)
58
- rspec-support (~> 3.11.0)
59
- rspec-mocks (3.11.1)
192
+ rspec-support (~> 3.13.0)
193
+ rspec-mocks (3.13.1)
60
194
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.11.0)
62
- rspec-support (3.11.0)
63
- rubocop (1.32.0)
195
+ rspec-support (~> 3.13.0)
196
+ rspec-support (3.13.1)
197
+ rubocop (1.66.1)
64
198
  json (~> 2.3)
199
+ language_server-protocol (>= 3.17.0)
65
200
  parallel (~> 1.10)
66
- parser (>= 3.1.0.0)
201
+ parser (>= 3.3.0.2)
67
202
  rainbow (>= 2.2.2, < 4.0)
68
- regexp_parser (>= 1.8, < 3.0)
69
- rexml (>= 3.2.5, < 4.0)
70
- rubocop-ast (>= 1.19.1, < 2.0)
203
+ regexp_parser (>= 2.4, < 3.0)
204
+ rubocop-ast (>= 1.32.2, < 2.0)
71
205
  ruby-progressbar (~> 1.7)
72
- unicode-display_width (>= 1.4.0, < 3.0)
73
- rubocop-ast (1.19.1)
74
- parser (>= 3.1.1.0)
75
- rubocop-performance (1.14.3)
76
- rubocop (>= 1.7.0, < 2.0)
77
- rubocop-ast (>= 0.4.0)
78
- rubocop-rails (2.15.2)
206
+ unicode-display_width (>= 2.4.0, < 3.0)
207
+ rubocop-ast (1.32.3)
208
+ parser (>= 3.3.1.0)
209
+ rubocop-performance (1.22.1)
210
+ rubocop (>= 1.48.1, < 2.0)
211
+ rubocop-ast (>= 1.31.1, < 2.0)
212
+ rubocop-rails (2.26.2)
79
213
  activesupport (>= 4.2.0)
80
214
  rack (>= 1.1)
81
- rubocop (>= 1.7.0, < 2.0)
215
+ rubocop (>= 1.52.0, < 2.0)
216
+ rubocop-ast (>= 1.31.1, < 2.0)
82
217
  rubocop-rake (0.6.0)
83
218
  rubocop (~> 1.0)
84
- rubocop-rspec (2.11.1)
85
- rubocop (~> 1.19)
86
- ruby-progressbar (1.11.0)
219
+ rubocop-rspec (3.1.0)
220
+ rubocop (~> 1.61)
221
+ ruby-progressbar (1.13.0)
87
222
  rubyzip (2.3.2)
88
- thor (1.2.1)
223
+ strscan (3.1.0)
224
+ thor (1.3.1)
225
+ timeout (0.4.1)
89
226
  tomlrb (2.0.3)
90
- tzinfo (2.0.4)
227
+ tzinfo (2.0.6)
91
228
  concurrent-ruby (~> 1.0)
92
- unicode-display_width (2.2.0)
229
+ unicode-display_width (2.6.0)
230
+ websocket-driver (0.7.6)
231
+ websocket-extensions (>= 0.1.0)
232
+ websocket-extensions (0.1.5)
93
233
  with_env (1.1.0)
94
234
  xml-simple (1.1.9)
95
235
  rexml
236
+ zeitwerk (2.6.17)
96
237
 
97
238
  PLATFORMS
98
- arm64-darwin-21
99
- x86_64-darwin-21
239
+ arm64-darwin-22
240
+ ruby
100
241
  x86_64-linux
101
242
 
102
243
  DEPENDENCIES
244
+ appraisal (~> 2.5.0)
103
245
  license_finder (~> 7.0)
104
- pry-byebug (= 3.9.0)
246
+ pry (>= 0.14.2)
247
+ pry-byebug (= 3.10.1)
248
+ rails (>= 6.0.6.1, < 7.1)
105
249
  rake (~> 13.0)
106
250
  rspec (~> 3.0)
107
- rubocop (~> 1.32.0)
108
- rubocop-performance
109
251
  rubocop-powerhome!
110
- rubocop-rails
111
- rubocop-rake
112
- rubocop-rspec
113
252
 
114
253
  BUNDLED WITH
115
- 2.3.14
254
+ 2.3.24
data/config/default.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.7
2
+ TargetRubyVersion: 3.0
3
3
  NewCops: enable
4
4
  DisplayStyleGuide: true
5
5
  ExtraDetails: true
@@ -7,6 +7,9 @@ AllCops:
7
7
  Gemspec/RequiredRubyVersion:
8
8
  Enabled: false
9
9
 
10
+ Gemspec/DevelopmentDependencies:
11
+ Enabled: false
12
+
10
13
  Layout/AccessModifierIndentation:
11
14
  EnforcedStyle: outdent
12
15
 
@@ -1,3 +1,9 @@
1
1
  ---
2
2
  - - :inherit_from
3
3
  - https://raw.githubusercontent.com/powerhome/oss-guide/master/license_rules.yml
4
+ - - :permit
5
+ - MIT AND (BSD-2-Clause OR GPL-2.0-or-later)
6
+ - :who:
7
+ :why:
8
+ :versions: []
9
+ :when: 2024-01-03 17:18:29.419777000 Z
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "6.0.6.1"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,252 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ rubocop-powerhome (0.5.3)
5
+ rubocop (= 1.66.1)
6
+ rubocop-performance
7
+ rubocop-rails
8
+ rubocop-rake
9
+ rubocop-rspec
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (6.0.6.1)
15
+ actionpack (= 6.0.6.1)
16
+ nio4r (~> 2.0)
17
+ websocket-driver (>= 0.6.1)
18
+ actionmailbox (6.0.6.1)
19
+ actionpack (= 6.0.6.1)
20
+ activejob (= 6.0.6.1)
21
+ activerecord (= 6.0.6.1)
22
+ activestorage (= 6.0.6.1)
23
+ activesupport (= 6.0.6.1)
24
+ mail (>= 2.7.1)
25
+ actionmailer (6.0.6.1)
26
+ actionpack (= 6.0.6.1)
27
+ actionview (= 6.0.6.1)
28
+ activejob (= 6.0.6.1)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (6.0.6.1)
32
+ actionview (= 6.0.6.1)
33
+ activesupport (= 6.0.6.1)
34
+ rack (~> 2.0, >= 2.0.8)
35
+ rack-test (>= 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
+ actiontext (6.0.6.1)
39
+ actionpack (= 6.0.6.1)
40
+ activerecord (= 6.0.6.1)
41
+ activestorage (= 6.0.6.1)
42
+ activesupport (= 6.0.6.1)
43
+ nokogiri (>= 1.8.5)
44
+ actionview (6.0.6.1)
45
+ activesupport (= 6.0.6.1)
46
+ builder (~> 3.1)
47
+ erubi (~> 1.4)
48
+ rails-dom-testing (~> 2.0)
49
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
+ activejob (6.0.6.1)
51
+ activesupport (= 6.0.6.1)
52
+ globalid (>= 0.3.6)
53
+ activemodel (6.0.6.1)
54
+ activesupport (= 6.0.6.1)
55
+ activerecord (6.0.6.1)
56
+ activemodel (= 6.0.6.1)
57
+ activesupport (= 6.0.6.1)
58
+ activestorage (6.0.6.1)
59
+ actionpack (= 6.0.6.1)
60
+ activejob (= 6.0.6.1)
61
+ activerecord (= 6.0.6.1)
62
+ marcel (~> 1.0)
63
+ activesupport (6.0.6.1)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 0.7, < 2)
66
+ minitest (~> 5.1)
67
+ tzinfo (~> 1.1)
68
+ zeitwerk (~> 2.2, >= 2.2.2)
69
+ appraisal (2.5.0)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ ast (2.4.2)
74
+ builder (3.2.4)
75
+ byebug (11.1.3)
76
+ coderay (1.1.3)
77
+ concurrent-ruby (1.2.3)
78
+ crass (1.0.6)
79
+ csv (3.3.0)
80
+ date (3.3.4)
81
+ diff-lcs (1.5.1)
82
+ erubi (1.12.0)
83
+ globalid (1.1.0)
84
+ activesupport (>= 5.0)
85
+ i18n (1.14.5)
86
+ concurrent-ruby (~> 1.0)
87
+ json (2.7.2)
88
+ language_server-protocol (3.17.0.3)
89
+ license_finder (7.2.1)
90
+ bundler
91
+ csv (~> 3.2)
92
+ rubyzip (>= 1, < 3)
93
+ thor (~> 1.2)
94
+ tomlrb (>= 1.3, < 2.1)
95
+ with_env (= 1.1.0)
96
+ xml-simple (~> 1.1.9)
97
+ loofah (2.22.0)
98
+ crass (~> 1.0.2)
99
+ nokogiri (>= 1.12.0)
100
+ mail (2.8.1)
101
+ mini_mime (>= 0.1.1)
102
+ net-imap
103
+ net-pop
104
+ net-smtp
105
+ marcel (1.0.4)
106
+ method_source (1.1.0)
107
+ mini_mime (1.1.5)
108
+ mini_portile2 (2.8.6)
109
+ minitest (5.23.0)
110
+ net-imap (0.4.11)
111
+ date
112
+ net-protocol
113
+ net-pop (0.1.2)
114
+ net-protocol
115
+ net-protocol (0.2.2)
116
+ timeout
117
+ net-smtp (0.5.0)
118
+ net-protocol
119
+ nio4r (2.7.3)
120
+ nokogiri (1.16.5)
121
+ mini_portile2 (~> 2.8.2)
122
+ racc (~> 1.4)
123
+ nokogiri (1.16.5-arm64-darwin)
124
+ racc (~> 1.4)
125
+ nokogiri (1.16.5-x86_64-linux)
126
+ racc (~> 1.4)
127
+ parallel (1.26.3)
128
+ parser (3.3.5.0)
129
+ ast (~> 2.4.1)
130
+ racc
131
+ pry (0.14.2)
132
+ coderay (~> 1.1)
133
+ method_source (~> 1.0)
134
+ pry-byebug (3.10.1)
135
+ byebug (~> 11.0)
136
+ pry (>= 0.13, < 0.15)
137
+ racc (1.8.0)
138
+ rack (2.2.9)
139
+ rack-test (2.1.0)
140
+ rack (>= 1.3)
141
+ rails (6.0.6.1)
142
+ actioncable (= 6.0.6.1)
143
+ actionmailbox (= 6.0.6.1)
144
+ actionmailer (= 6.0.6.1)
145
+ actionpack (= 6.0.6.1)
146
+ actiontext (= 6.0.6.1)
147
+ actionview (= 6.0.6.1)
148
+ activejob (= 6.0.6.1)
149
+ activemodel (= 6.0.6.1)
150
+ activerecord (= 6.0.6.1)
151
+ activestorage (= 6.0.6.1)
152
+ activesupport (= 6.0.6.1)
153
+ bundler (>= 1.3.0)
154
+ railties (= 6.0.6.1)
155
+ sprockets-rails (>= 2.0.0)
156
+ rails-dom-testing (2.2.0)
157
+ activesupport (>= 5.0.0)
158
+ minitest
159
+ nokogiri (>= 1.6)
160
+ rails-html-sanitizer (1.6.0)
161
+ loofah (~> 2.21)
162
+ nokogiri (~> 1.14)
163
+ railties (6.0.6.1)
164
+ actionpack (= 6.0.6.1)
165
+ activesupport (= 6.0.6.1)
166
+ method_source
167
+ rake (>= 0.8.7)
168
+ thor (>= 0.20.3, < 2.0)
169
+ rainbow (3.1.1)
170
+ rake (13.2.1)
171
+ regexp_parser (2.9.2)
172
+ rexml (3.2.8)
173
+ strscan (>= 3.0.9)
174
+ rspec (3.13.0)
175
+ rspec-core (~> 3.13.0)
176
+ rspec-expectations (~> 3.13.0)
177
+ rspec-mocks (~> 3.13.0)
178
+ rspec-core (3.13.0)
179
+ rspec-support (~> 3.13.0)
180
+ rspec-expectations (3.13.0)
181
+ diff-lcs (>= 1.2.0, < 2.0)
182
+ rspec-support (~> 3.13.0)
183
+ rspec-mocks (3.13.1)
184
+ diff-lcs (>= 1.2.0, < 2.0)
185
+ rspec-support (~> 3.13.0)
186
+ rspec-support (3.13.1)
187
+ rubocop (1.66.1)
188
+ json (~> 2.3)
189
+ language_server-protocol (>= 3.17.0)
190
+ parallel (~> 1.10)
191
+ parser (>= 3.3.0.2)
192
+ rainbow (>= 2.2.2, < 4.0)
193
+ regexp_parser (>= 2.4, < 3.0)
194
+ rubocop-ast (>= 1.32.2, < 2.0)
195
+ ruby-progressbar (~> 1.7)
196
+ unicode-display_width (>= 2.4.0, < 3.0)
197
+ rubocop-ast (1.32.3)
198
+ parser (>= 3.3.1.0)
199
+ rubocop-performance (1.22.1)
200
+ rubocop (>= 1.48.1, < 2.0)
201
+ rubocop-ast (>= 1.31.1, < 2.0)
202
+ rubocop-rails (2.26.2)
203
+ activesupport (>= 4.2.0)
204
+ rack (>= 1.1)
205
+ rubocop (>= 1.52.0, < 2.0)
206
+ rubocop-ast (>= 1.31.1, < 2.0)
207
+ rubocop-rake (0.6.0)
208
+ rubocop (~> 1.0)
209
+ rubocop-rspec (3.1.0)
210
+ rubocop (~> 1.61)
211
+ ruby-progressbar (1.13.0)
212
+ rubyzip (2.3.2)
213
+ sprockets (4.2.1)
214
+ concurrent-ruby (~> 1.0)
215
+ rack (>= 2.2.4, < 4)
216
+ sprockets-rails (3.4.2)
217
+ actionpack (>= 5.2)
218
+ activesupport (>= 5.2)
219
+ sprockets (>= 3.0.0)
220
+ strscan (3.1.0)
221
+ thor (1.3.1)
222
+ thread_safe (0.3.6)
223
+ timeout (0.4.1)
224
+ tomlrb (2.0.3)
225
+ tzinfo (1.2.11)
226
+ thread_safe (~> 0.1)
227
+ unicode-display_width (2.6.0)
228
+ websocket-driver (0.7.6)
229
+ websocket-extensions (>= 0.1.0)
230
+ websocket-extensions (0.1.5)
231
+ with_env (1.1.0)
232
+ xml-simple (1.1.9)
233
+ rexml
234
+ zeitwerk (2.6.14)
235
+
236
+ PLATFORMS
237
+ arm64-darwin-22
238
+ ruby
239
+ x86_64-linux
240
+
241
+ DEPENDENCIES
242
+ appraisal (~> 2.5.0)
243
+ license_finder (~> 7.0)
244
+ pry (>= 0.14.2)
245
+ pry-byebug (= 3.10.1)
246
+ rails (= 6.0.6.1)
247
+ rake (~> 13.0)
248
+ rspec (~> 3.0)
249
+ rubocop-powerhome!
250
+
251
+ BUNDLED WITH
252
+ 2.3.24
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "6.1.7.7"
6
+
7
+ gemspec path: "../"