rubocop-cobra 0.4.6 → 0.5.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 +4 -4
- data/Appraisals +8 -8
- data/CHANGELOG.md +11 -1
- data/Gemfile +0 -5
- data/Gemfile.lock +58 -73
- data/gemfiles/rails_7_1.gemfile +0 -5
- data/gemfiles/rails_7_1.gemfile.lock +78 -73
- data/gemfiles/rails_7_2.gemfile +0 -5
- data/gemfiles/rails_7_2.gemfile.lock +78 -73
- data/gemfiles/{rails_6_0.gemfile → rails_8_0.gemfile} +1 -3
- data/gemfiles/rails_8_0.gemfile.lock +331 -0
- data/gemfiles/{rails_7_0.gemfile → rails_8_1.gemfile} +1 -6
- data/gemfiles/rails_8_1.gemfile.lock +333 -0
- data/lib/rubocop/cobra/version.rb +1 -1
- data/rubocop-cobra.gemspec +1 -1
- metadata +7 -9
- data/gemfiles/rails_6_0.gemfile.lock +0 -258
- data/gemfiles/rails_6_1.gemfile +0 -17
- data/gemfiles/rails_6_1.gemfile.lock +0 -280
- data/gemfiles/rails_7_0.gemfile.lock +0 -277
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4731595ce18637027a1ce473a78d16224e4adfff65ad3b4df3ced8013a64fb2d
|
|
4
|
+
data.tar.gz: 152d821617a7465990c89ca7d7ff3b39b579b34893a478dfd1f4a413332bd783
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c6aa816a0d26bf6b30296b694c03b3fa9a651806a89a2588d9815c090bbc0c4e37a9304f76518f3985540d8ebdc9cb05906438cf46c46a5318d203616a12a94
|
|
7
|
+
data.tar.gz: c022a417d7f7ca0eb024d166fcdcc27ceaf3fed0bfbc4395b6f0dede27d77b0e3a60d6dd7a1a267d74212a180bee9577d9da2f73eb6d060ead763cd81a6285a6
|
data/Appraisals
CHANGED
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
appraise "rails-6-1" do
|
|
4
|
-
gem "rails", "6.1.7.7"
|
|
5
|
-
end
|
|
6
|
-
|
|
7
|
-
appraise "rails-7-0" do
|
|
8
|
-
gem "rails", "7.0.8.1"
|
|
9
|
-
end
|
|
10
|
-
|
|
11
3
|
appraise "rails-7-1" do
|
|
12
4
|
gem "rails", "7.1.5.2"
|
|
13
5
|
end
|
|
@@ -15,3 +7,11 @@ end
|
|
|
15
7
|
appraise "rails-7-2" do
|
|
16
8
|
gem "rails", "7.2.2.2"
|
|
17
9
|
end
|
|
10
|
+
|
|
11
|
+
appraise "rails-8-0" do
|
|
12
|
+
gem "rails", "8.0.5"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
appraise "rails-8-1" do
|
|
16
|
+
gem "rails", "8.1.3"
|
|
17
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## [0.5.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
|
+
|
|
10
|
+
## [0.4.7] - 2026-01-05
|
|
11
|
+
|
|
12
|
+
- Bump Rubocop version to keep in parallel with rubocop-powerhome.
|
|
4
13
|
|
|
5
14
|
## [0.4.6] - 2025-09-09
|
|
6
15
|
|
|
7
16
|
- Bump Rubocop version to unblock dependabot in repos
|
|
17
|
+
- 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)
|
|
8
18
|
|
|
9
19
|
## [0.4.5] - 2025-04-22
|
|
10
20
|
|
data/Gemfile
CHANGED
|
@@ -5,12 +5,7 @@ source "https://rubygems.org"
|
|
|
5
5
|
# Specify your gem's dependencies in rubocop-cobra.gemspec
|
|
6
6
|
gemspec
|
|
7
7
|
|
|
8
|
-
gem "erb", "< 5"
|
|
9
|
-
gem "net-imap", "< 0.5.0"
|
|
10
|
-
gem "nokogiri", "< 1.18.0"
|
|
11
8
|
gem "rake", "~> 13.0"
|
|
12
9
|
gem "rspec", "~> 3.0"
|
|
13
|
-
gem "securerandom", "< 0.4.0"
|
|
14
|
-
gem "zeitwerk", "< 2.7.0"
|
|
15
10
|
|
|
16
11
|
gem "rubocop-powerhome", path: "../rubocop-powerhome"
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
8
8
|
rubocop-rake
|
|
@@ -11,21 +11,21 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: .
|
|
13
13
|
specs:
|
|
14
|
-
rubocop-cobra (0.
|
|
15
|
-
rubocop (= 1.
|
|
14
|
+
rubocop-cobra (0.5.0)
|
|
15
|
+
rubocop (= 1.82.1)
|
|
16
16
|
rubocop-powerhome
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
-
activesupport (8.
|
|
21
|
+
activesupport (8.1.3)
|
|
22
22
|
base64
|
|
23
|
-
benchmark (>= 0.3)
|
|
24
23
|
bigdecimal
|
|
25
24
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
26
25
|
connection_pool (>= 2.2.5)
|
|
27
26
|
drb
|
|
28
27
|
i18n (>= 1.6, < 2)
|
|
28
|
+
json
|
|
29
29
|
logger (>= 1.4.2)
|
|
30
30
|
minitest (>= 5.1)
|
|
31
31
|
securerandom (>= 0.3)
|
|
@@ -35,25 +35,20 @@ GEM
|
|
|
35
35
|
bundler
|
|
36
36
|
rake
|
|
37
37
|
thor (>= 0.14.0)
|
|
38
|
-
ast (2.4.
|
|
39
|
-
base64 (0.
|
|
40
|
-
|
|
41
|
-
bigdecimal (3.1.9)
|
|
38
|
+
ast (2.4.3)
|
|
39
|
+
base64 (0.3.0)
|
|
40
|
+
bigdecimal (4.1.1)
|
|
42
41
|
byebug (11.1.3)
|
|
43
|
-
cgi (0.5.0)
|
|
44
42
|
coderay (1.1.3)
|
|
45
|
-
concurrent-ruby (1.3.
|
|
46
|
-
connection_pool (
|
|
47
|
-
csv (3.3.
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
erb (4.0.4)
|
|
52
|
-
cgi (>= 0.3.3)
|
|
53
|
-
i18n (1.14.7)
|
|
43
|
+
concurrent-ruby (1.3.6)
|
|
44
|
+
connection_pool (3.0.2)
|
|
45
|
+
csv (3.3.5)
|
|
46
|
+
diff-lcs (1.6.2)
|
|
47
|
+
drb (2.2.3)
|
|
48
|
+
i18n (1.14.8)
|
|
54
49
|
concurrent-ruby (~> 1.0)
|
|
55
|
-
json (2.
|
|
56
|
-
language_server-protocol (3.17.0.
|
|
50
|
+
json (2.19.3)
|
|
51
|
+
language_server-protocol (3.17.0.5)
|
|
57
52
|
license_finder (7.2.1)
|
|
58
53
|
bundler
|
|
59
54
|
csv (~> 3.2)
|
|
@@ -63,25 +58,16 @@ GEM
|
|
|
63
58
|
with_env (= 1.1.0)
|
|
64
59
|
xml-simple (~> 1.1.9)
|
|
65
60
|
lint_roller (1.1.0)
|
|
66
|
-
logger (1.
|
|
61
|
+
logger (1.7.0)
|
|
67
62
|
method_source (1.1.0)
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
net-protocol (0.2.2)
|
|
74
|
-
timeout
|
|
75
|
-
nokogiri (1.17.2)
|
|
76
|
-
mini_portile2 (~> 2.8.2)
|
|
77
|
-
racc (~> 1.4)
|
|
78
|
-
nokogiri (1.17.2-arm64-darwin)
|
|
79
|
-
racc (~> 1.4)
|
|
80
|
-
parallel (1.26.3)
|
|
81
|
-
parser (3.3.9.0)
|
|
63
|
+
minitest (6.0.3)
|
|
64
|
+
drb (~> 2.0)
|
|
65
|
+
prism (~> 1.5)
|
|
66
|
+
parallel (1.28.0)
|
|
67
|
+
parser (3.3.11.1)
|
|
82
68
|
ast (~> 2.4.1)
|
|
83
69
|
racc
|
|
84
|
-
prism (1.
|
|
70
|
+
prism (1.9.0)
|
|
85
71
|
pry (0.14.2)
|
|
86
72
|
coderay (~> 1.1)
|
|
87
73
|
method_source (~> 1.0)
|
|
@@ -89,25 +75,25 @@ GEM
|
|
|
89
75
|
byebug (~> 11.0)
|
|
90
76
|
pry (>= 0.13, < 0.15)
|
|
91
77
|
racc (1.8.1)
|
|
92
|
-
rack (3.
|
|
78
|
+
rack (3.2.6)
|
|
93
79
|
rainbow (3.1.1)
|
|
94
|
-
rake (13.
|
|
95
|
-
regexp_parser (2.
|
|
96
|
-
rexml (3.4.
|
|
97
|
-
rspec (3.13.
|
|
80
|
+
rake (13.3.1)
|
|
81
|
+
regexp_parser (2.12.0)
|
|
82
|
+
rexml (3.4.4)
|
|
83
|
+
rspec (3.13.2)
|
|
98
84
|
rspec-core (~> 3.13.0)
|
|
99
85
|
rspec-expectations (~> 3.13.0)
|
|
100
86
|
rspec-mocks (~> 3.13.0)
|
|
101
|
-
rspec-core (3.13.
|
|
87
|
+
rspec-core (3.13.6)
|
|
102
88
|
rspec-support (~> 3.13.0)
|
|
103
|
-
rspec-expectations (3.13.
|
|
89
|
+
rspec-expectations (3.13.5)
|
|
104
90
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
105
91
|
rspec-support (~> 3.13.0)
|
|
106
|
-
rspec-mocks (3.13.
|
|
92
|
+
rspec-mocks (3.13.8)
|
|
107
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
108
94
|
rspec-support (~> 3.13.0)
|
|
109
|
-
rspec-support (3.13.
|
|
110
|
-
rubocop (1.
|
|
95
|
+
rspec-support (3.13.7)
|
|
96
|
+
rubocop (1.82.1)
|
|
111
97
|
json (~> 2.3)
|
|
112
98
|
language_server-protocol (~> 3.17.0.2)
|
|
113
99
|
lint_roller (~> 1.1.0)
|
|
@@ -115,38 +101,42 @@ GEM
|
|
|
115
101
|
parser (>= 3.3.0.2)
|
|
116
102
|
rainbow (>= 2.2.2, < 4.0)
|
|
117
103
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
118
|
-
rubocop-ast (>= 1.
|
|
104
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
119
105
|
ruby-progressbar (~> 1.7)
|
|
120
106
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
121
|
-
rubocop-ast (1.
|
|
107
|
+
rubocop-ast (1.49.1)
|
|
122
108
|
parser (>= 3.3.7.2)
|
|
123
|
-
prism (~> 1.
|
|
124
|
-
rubocop-performance (1.
|
|
125
|
-
|
|
126
|
-
rubocop
|
|
127
|
-
|
|
109
|
+
prism (~> 1.7)
|
|
110
|
+
rubocop-performance (1.26.1)
|
|
111
|
+
lint_roller (~> 1.1)
|
|
112
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
113
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
114
|
+
rubocop-rails (2.34.3)
|
|
128
115
|
activesupport (>= 4.2.0)
|
|
116
|
+
lint_roller (~> 1.1)
|
|
129
117
|
rack (>= 1.1)
|
|
130
|
-
rubocop (>= 1.
|
|
131
|
-
rubocop-ast (>= 1.
|
|
132
|
-
rubocop-rake (0.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
118
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
119
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
120
|
+
rubocop-rake (0.7.1)
|
|
121
|
+
lint_roller (~> 1.1)
|
|
122
|
+
rubocop (>= 1.72.1)
|
|
123
|
+
rubocop-rspec (3.9.0)
|
|
124
|
+
lint_roller (~> 1.1)
|
|
125
|
+
rubocop (~> 1.81)
|
|
136
126
|
ruby-progressbar (1.13.0)
|
|
137
127
|
rubyzip (2.4.1)
|
|
138
|
-
securerandom (0.
|
|
139
|
-
thor (1.
|
|
140
|
-
|
|
141
|
-
tomlrb (2.0.3)
|
|
128
|
+
securerandom (0.4.1)
|
|
129
|
+
thor (1.5.0)
|
|
130
|
+
tomlrb (2.0.4)
|
|
142
131
|
tzinfo (2.0.6)
|
|
143
132
|
concurrent-ruby (~> 1.0)
|
|
144
|
-
unicode-display_width (2.
|
|
145
|
-
|
|
133
|
+
unicode-display_width (3.2.0)
|
|
134
|
+
unicode-emoji (~> 4.1)
|
|
135
|
+
unicode-emoji (4.2.0)
|
|
136
|
+
uri (1.1.1)
|
|
146
137
|
with_env (1.1.0)
|
|
147
138
|
xml-simple (1.1.9)
|
|
148
139
|
rexml
|
|
149
|
-
zeitwerk (2.6.18)
|
|
150
140
|
|
|
151
141
|
PLATFORMS
|
|
152
142
|
arm64-darwin-24
|
|
@@ -154,18 +144,13 @@ PLATFORMS
|
|
|
154
144
|
|
|
155
145
|
DEPENDENCIES
|
|
156
146
|
appraisal (~> 2.5.0)
|
|
157
|
-
erb (< 5)
|
|
158
147
|
license_finder (~> 7.0)
|
|
159
|
-
net-imap (< 0.5.0)
|
|
160
|
-
nokogiri (< 1.18.0)
|
|
161
148
|
pry (>= 0.14.2)
|
|
162
149
|
pry-byebug (= 3.10.1)
|
|
163
150
|
rake (~> 13.0)
|
|
164
151
|
rspec (~> 3.0)
|
|
165
152
|
rubocop-cobra!
|
|
166
153
|
rubocop-powerhome!
|
|
167
|
-
securerandom (< 0.4.0)
|
|
168
|
-
zeitwerk (< 2.7.0)
|
|
169
154
|
|
|
170
155
|
BUNDLED WITH
|
|
171
156
|
2.5.23
|
data/gemfiles/rails_7_1.gemfile
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
source "https://rubygems.org"
|
|
6
6
|
|
|
7
|
-
gem "erb", "< 5"
|
|
8
|
-
gem "net-imap", "< 0.5.0"
|
|
9
|
-
gem "nokogiri", "< 1.18.0"
|
|
10
7
|
gem "rails", "7.1.5.2"
|
|
11
8
|
gem "rake", "~> 13.0"
|
|
12
9
|
gem "rspec", "~> 3.0"
|
|
13
10
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
14
|
-
gem "securerandom", "< 0.4.0"
|
|
15
|
-
gem "zeitwerk", "< 2.7.0"
|
|
16
11
|
|
|
17
12
|
gemspec path: "../"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
8
8
|
rubocop-rake
|
|
@@ -11,8 +11,8 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
rubocop-cobra (0.
|
|
15
|
-
rubocop (= 1.
|
|
14
|
+
rubocop-cobra (0.5.0)
|
|
15
|
+
rubocop (= 1.82.1)
|
|
16
16
|
rubocop-powerhome
|
|
17
17
|
|
|
18
18
|
GEM
|
|
@@ -101,32 +101,31 @@ GEM
|
|
|
101
101
|
thor (>= 0.14.0)
|
|
102
102
|
ast (2.4.3)
|
|
103
103
|
base64 (0.3.0)
|
|
104
|
-
benchmark (0.
|
|
105
|
-
bigdecimal (
|
|
104
|
+
benchmark (0.5.0)
|
|
105
|
+
bigdecimal (4.1.2)
|
|
106
106
|
builder (3.3.0)
|
|
107
107
|
byebug (11.1.3)
|
|
108
|
-
cgi (0.5.0)
|
|
109
108
|
coderay (1.1.3)
|
|
110
|
-
concurrent-ruby (1.3.
|
|
111
|
-
connection_pool (
|
|
109
|
+
concurrent-ruby (1.3.6)
|
|
110
|
+
connection_pool (3.0.2)
|
|
112
111
|
crass (1.0.6)
|
|
113
112
|
csv (3.3.5)
|
|
114
|
-
date (3.
|
|
113
|
+
date (3.5.1)
|
|
115
114
|
diff-lcs (1.6.2)
|
|
116
115
|
drb (2.2.3)
|
|
117
|
-
erb (
|
|
118
|
-
cgi (>= 0.3.3)
|
|
116
|
+
erb (6.0.2)
|
|
119
117
|
erubi (1.13.1)
|
|
120
|
-
globalid (1.
|
|
118
|
+
globalid (1.3.0)
|
|
121
119
|
activesupport (>= 6.1)
|
|
122
|
-
i18n (1.14.
|
|
120
|
+
i18n (1.14.8)
|
|
123
121
|
concurrent-ruby (~> 1.0)
|
|
124
|
-
io-console (0.8.
|
|
125
|
-
irb (1.
|
|
122
|
+
io-console (0.8.2)
|
|
123
|
+
irb (1.17.0)
|
|
126
124
|
pp (>= 0.6.0)
|
|
125
|
+
prism (>= 1.3.0)
|
|
127
126
|
rdoc (>= 4.0.0)
|
|
128
127
|
reline (>= 0.4.2)
|
|
129
|
-
json (2.
|
|
128
|
+
json (2.19.5)
|
|
130
129
|
language_server-protocol (3.17.0.5)
|
|
131
130
|
license_finder (7.2.1)
|
|
132
131
|
bundler
|
|
@@ -138,20 +137,23 @@ GEM
|
|
|
138
137
|
xml-simple (~> 1.1.9)
|
|
139
138
|
lint_roller (1.1.0)
|
|
140
139
|
logger (1.7.0)
|
|
141
|
-
loofah (2.
|
|
140
|
+
loofah (2.25.1)
|
|
142
141
|
crass (~> 1.0.2)
|
|
143
142
|
nokogiri (>= 1.12.0)
|
|
144
|
-
mail (2.
|
|
143
|
+
mail (2.9.0)
|
|
144
|
+
logger
|
|
145
145
|
mini_mime (>= 0.1.1)
|
|
146
146
|
net-imap
|
|
147
147
|
net-pop
|
|
148
148
|
net-smtp
|
|
149
|
-
marcel (1.0
|
|
149
|
+
marcel (1.1.0)
|
|
150
150
|
method_source (1.1.0)
|
|
151
151
|
mini_mime (1.1.5)
|
|
152
|
-
minitest (
|
|
152
|
+
minitest (6.0.6)
|
|
153
|
+
drb (~> 2.0)
|
|
154
|
+
prism (~> 1.5)
|
|
153
155
|
mutex_m (0.3.0)
|
|
154
|
-
net-imap (0.
|
|
156
|
+
net-imap (0.6.3)
|
|
155
157
|
date
|
|
156
158
|
net-protocol
|
|
157
159
|
net-pop (0.1.2)
|
|
@@ -160,42 +162,48 @@ GEM
|
|
|
160
162
|
timeout
|
|
161
163
|
net-smtp (0.5.1)
|
|
162
164
|
net-protocol
|
|
163
|
-
nio4r (2.7.
|
|
164
|
-
nokogiri (1.
|
|
165
|
+
nio4r (2.7.5)
|
|
166
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
165
167
|
racc (~> 1.4)
|
|
166
|
-
nokogiri (1.
|
|
168
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
167
169
|
racc (~> 1.4)
|
|
168
|
-
nokogiri (1.
|
|
170
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
169
171
|
racc (~> 1.4)
|
|
170
|
-
nokogiri (1.
|
|
172
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
171
173
|
racc (~> 1.4)
|
|
172
|
-
nokogiri (1.
|
|
174
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
173
175
|
racc (~> 1.4)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
177
|
+
racc (~> 1.4)
|
|
178
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
179
|
+
racc (~> 1.4)
|
|
180
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
181
|
+
racc (~> 1.4)
|
|
182
|
+
parallel (1.28.0)
|
|
183
|
+
parser (3.3.11.1)
|
|
176
184
|
ast (~> 2.4.1)
|
|
177
185
|
racc
|
|
178
|
-
pp (0.6.
|
|
186
|
+
pp (0.6.3)
|
|
179
187
|
prettyprint
|
|
180
188
|
prettyprint (0.2.0)
|
|
181
|
-
prism (1.
|
|
189
|
+
prism (1.9.0)
|
|
182
190
|
pry (0.14.2)
|
|
183
191
|
coderay (~> 1.1)
|
|
184
192
|
method_source (~> 1.0)
|
|
185
193
|
pry-byebug (3.10.1)
|
|
186
194
|
byebug (~> 11.0)
|
|
187
195
|
pry (>= 0.13, < 0.15)
|
|
188
|
-
psych (5.
|
|
196
|
+
psych (5.3.1)
|
|
189
197
|
date
|
|
190
198
|
stringio
|
|
191
199
|
racc (1.8.1)
|
|
192
|
-
rack (3.2.
|
|
193
|
-
rack-session (2.1.
|
|
200
|
+
rack (3.2.6)
|
|
201
|
+
rack-session (2.1.2)
|
|
194
202
|
base64 (>= 0.1.0)
|
|
195
203
|
rack (>= 3.0.0)
|
|
196
204
|
rack-test (2.2.0)
|
|
197
205
|
rack (>= 1.3)
|
|
198
|
-
rackup (2.
|
|
206
|
+
rackup (2.3.1)
|
|
199
207
|
rack (>= 3)
|
|
200
208
|
rails (7.1.5.2)
|
|
201
209
|
actioncable (= 7.1.5.2)
|
|
@@ -215,8 +223,8 @@ GEM
|
|
|
215
223
|
activesupport (>= 5.0.0)
|
|
216
224
|
minitest
|
|
217
225
|
nokogiri (>= 1.6)
|
|
218
|
-
rails-html-sanitizer (1.
|
|
219
|
-
loofah (~> 2.
|
|
226
|
+
rails-html-sanitizer (1.7.0)
|
|
227
|
+
loofah (~> 2.25)
|
|
220
228
|
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)
|
|
221
229
|
railties (7.1.5.2)
|
|
222
230
|
actionpack (= 7.1.5.2)
|
|
@@ -227,28 +235,29 @@ GEM
|
|
|
227
235
|
thor (~> 1.0, >= 1.2.2)
|
|
228
236
|
zeitwerk (~> 2.6)
|
|
229
237
|
rainbow (3.1.1)
|
|
230
|
-
rake (13.3.
|
|
231
|
-
rdoc (
|
|
238
|
+
rake (13.3.1)
|
|
239
|
+
rdoc (7.2.0)
|
|
232
240
|
erb
|
|
233
241
|
psych (>= 4.0.0)
|
|
234
|
-
|
|
235
|
-
|
|
242
|
+
tsort
|
|
243
|
+
regexp_parser (2.12.0)
|
|
244
|
+
reline (0.6.3)
|
|
236
245
|
io-console (~> 0.5)
|
|
237
|
-
rexml (3.4.
|
|
238
|
-
rspec (3.13.
|
|
246
|
+
rexml (3.4.4)
|
|
247
|
+
rspec (3.13.2)
|
|
239
248
|
rspec-core (~> 3.13.0)
|
|
240
249
|
rspec-expectations (~> 3.13.0)
|
|
241
250
|
rspec-mocks (~> 3.13.0)
|
|
242
|
-
rspec-core (3.13.
|
|
251
|
+
rspec-core (3.13.6)
|
|
243
252
|
rspec-support (~> 3.13.0)
|
|
244
253
|
rspec-expectations (3.13.5)
|
|
245
254
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
246
255
|
rspec-support (~> 3.13.0)
|
|
247
|
-
rspec-mocks (3.13.
|
|
256
|
+
rspec-mocks (3.13.8)
|
|
248
257
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
249
258
|
rspec-support (~> 3.13.0)
|
|
250
|
-
rspec-support (3.13.
|
|
251
|
-
rubocop (1.
|
|
259
|
+
rspec-support (3.13.7)
|
|
260
|
+
rubocop (1.82.1)
|
|
252
261
|
json (~> 2.3)
|
|
253
262
|
language_server-protocol (~> 3.17.0.2)
|
|
254
263
|
lint_roller (~> 1.1.0)
|
|
@@ -256,40 +265,41 @@ GEM
|
|
|
256
265
|
parser (>= 3.3.0.2)
|
|
257
266
|
rainbow (>= 2.2.2, < 4.0)
|
|
258
267
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
259
|
-
rubocop-ast (>= 1.
|
|
268
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
260
269
|
ruby-progressbar (~> 1.7)
|
|
261
270
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
262
|
-
rubocop-ast (1.
|
|
271
|
+
rubocop-ast (1.49.1)
|
|
263
272
|
parser (>= 3.3.7.2)
|
|
264
|
-
prism (~> 1.
|
|
265
|
-
rubocop-performance (1.
|
|
273
|
+
prism (~> 1.7)
|
|
274
|
+
rubocop-performance (1.26.1)
|
|
266
275
|
lint_roller (~> 1.1)
|
|
267
|
-
rubocop (>= 1.
|
|
268
|
-
rubocop-ast (>= 1.
|
|
269
|
-
rubocop-rails (2.
|
|
276
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
277
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
278
|
+
rubocop-rails (2.35.0)
|
|
270
279
|
activesupport (>= 4.2.0)
|
|
271
280
|
lint_roller (~> 1.1)
|
|
272
281
|
rack (>= 1.1)
|
|
273
|
-
rubocop (>= 1.
|
|
274
|
-
rubocop-ast (>= 1.
|
|
282
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
283
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
275
284
|
rubocop-rake (0.7.1)
|
|
276
285
|
lint_roller (~> 1.1)
|
|
277
286
|
rubocop (>= 1.72.1)
|
|
278
|
-
rubocop-rspec (3.
|
|
287
|
+
rubocop-rspec (3.9.0)
|
|
279
288
|
lint_roller (~> 1.1)
|
|
280
|
-
rubocop (~> 1.
|
|
289
|
+
rubocop (~> 1.81)
|
|
281
290
|
ruby-progressbar (1.13.0)
|
|
282
291
|
rubyzip (2.4.1)
|
|
283
|
-
securerandom (0.
|
|
284
|
-
stringio (3.
|
|
285
|
-
thor (1.
|
|
286
|
-
timeout (0.
|
|
287
|
-
tomlrb (2.0.
|
|
292
|
+
securerandom (0.4.1)
|
|
293
|
+
stringio (3.2.0)
|
|
294
|
+
thor (1.5.0)
|
|
295
|
+
timeout (0.6.1)
|
|
296
|
+
tomlrb (2.0.4)
|
|
297
|
+
tsort (0.2.0)
|
|
288
298
|
tzinfo (2.0.6)
|
|
289
299
|
concurrent-ruby (~> 1.0)
|
|
290
|
-
unicode-display_width (3.
|
|
291
|
-
unicode-emoji (~> 4.
|
|
292
|
-
unicode-emoji (4.0
|
|
300
|
+
unicode-display_width (3.2.0)
|
|
301
|
+
unicode-emoji (~> 4.1)
|
|
302
|
+
unicode-emoji (4.2.0)
|
|
293
303
|
websocket-driver (0.8.0)
|
|
294
304
|
base64
|
|
295
305
|
websocket-extensions (>= 0.1.0)
|
|
@@ -297,7 +307,7 @@ GEM
|
|
|
297
307
|
with_env (1.1.0)
|
|
298
308
|
xml-simple (1.1.9)
|
|
299
309
|
rexml
|
|
300
|
-
zeitwerk (2.
|
|
310
|
+
zeitwerk (2.7.5)
|
|
301
311
|
|
|
302
312
|
PLATFORMS
|
|
303
313
|
aarch64-linux-gnu
|
|
@@ -311,10 +321,7 @@ PLATFORMS
|
|
|
311
321
|
|
|
312
322
|
DEPENDENCIES
|
|
313
323
|
appraisal (~> 2.5.0)
|
|
314
|
-
erb (< 5)
|
|
315
324
|
license_finder (~> 7.0)
|
|
316
|
-
net-imap (< 0.5.0)
|
|
317
|
-
nokogiri (< 1.18.0)
|
|
318
325
|
pry (>= 0.14.2)
|
|
319
326
|
pry-byebug (= 3.10.1)
|
|
320
327
|
rails (= 7.1.5.2)
|
|
@@ -322,8 +329,6 @@ DEPENDENCIES
|
|
|
322
329
|
rspec (~> 3.0)
|
|
323
330
|
rubocop-cobra!
|
|
324
331
|
rubocop-powerhome!
|
|
325
|
-
securerandom (< 0.4.0)
|
|
326
|
-
zeitwerk (< 2.7.0)
|
|
327
332
|
|
|
328
333
|
BUNDLED WITH
|
|
329
334
|
2.5.23
|
data/gemfiles/rails_7_2.gemfile
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
source "https://rubygems.org"
|
|
6
6
|
|
|
7
|
-
gem "erb", "< 5"
|
|
8
|
-
gem "net-imap", "< 0.5.0"
|
|
9
|
-
gem "nokogiri", "< 1.18.0"
|
|
10
7
|
gem "rails", "7.2.2.2"
|
|
11
8
|
gem "rake", "~> 13.0"
|
|
12
9
|
gem "rspec", "~> 3.0"
|
|
13
10
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
14
|
-
gem "securerandom", "< 0.4.0"
|
|
15
|
-
gem "zeitwerk", "< 2.7.0"
|
|
16
11
|
|
|
17
12
|
gemspec path: "../"
|