carwow_rubocop 5.0.0 → 6.2.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/.circleci/config.yml +17 -5
- data/Gemfile.lock +51 -41
- data/carwow_rubocop.gemspec +3 -2
- data/config/default.yml +1 -0
- data/config/rubocop-factory_bot.yml +8 -0
- data/config/rubocop-rspec.yml +0 -4
- data/config/rubocop-style.yml +3 -0
- data/lib/rubocop/carwow/version.rb +1 -1
- metadata +25 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e108ea65b97764a10101747cb8437be862669af21b4dec667b6a925f5e03ef79
|
4
|
+
data.tar.gz: ac93721daa53bdf58b8b2ea8edfa42c6d5391a8b3e4193e538a610dd7fc87889
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b11d2d7b14a9b6f547a086cc78cd8990fb1ab6058f1ee0ee17b24ceca9d5e56d8c93a3c288a90ec287f403d8774d2d7da82f7b43a0f7611ac2488c44d39aa06e
|
7
|
+
data.tar.gz: 61020f74e65d0c98dffd598c9d3af20ce0aab7d352a17a950075b126a56b3188006f09a5626afede70a27987b5784ba1ad0c1763f30f6363d5309990141ad775
|
data/.circleci/config.yml
CHANGED
@@ -1,16 +1,28 @@
|
|
1
1
|
version: 2.1
|
2
2
|
|
3
3
|
orbs:
|
4
|
-
buildevents: honeycombio/buildevents@0.
|
5
|
-
carwow: carwow/carwow-orb@0.
|
4
|
+
buildevents: honeycombio/buildevents@0.5
|
5
|
+
carwow: carwow/carwow-orb@0.6.0
|
6
6
|
|
7
|
+
executors:
|
8
|
+
ruby:
|
9
|
+
parameters:
|
10
|
+
ruby:
|
11
|
+
type: string
|
12
|
+
default: '3.2'
|
13
|
+
docker:
|
14
|
+
- &ruby
|
15
|
+
image: carwow/ruby-ci:<< parameters.ruby >>
|
16
|
+
auth: &docker_auth
|
17
|
+
username: $DOCKER_USERNAME
|
18
|
+
password: $DOCKER_TOKEN
|
7
19
|
|
8
20
|
##
|
9
21
|
# JOBs definitions
|
10
22
|
##
|
11
23
|
jobs:
|
12
24
|
tests:
|
13
|
-
executor:
|
25
|
+
executor: ruby
|
14
26
|
steps:
|
15
27
|
- buildevents/with_job_span:
|
16
28
|
steps:
|
@@ -26,7 +38,7 @@ jobs:
|
|
26
38
|
|
27
39
|
|
28
40
|
lint_ruby:
|
29
|
-
executor:
|
41
|
+
executor: ruby
|
30
42
|
steps:
|
31
43
|
- buildevents/with_job_span:
|
32
44
|
steps:
|
@@ -37,7 +49,7 @@ jobs:
|
|
37
49
|
|
38
50
|
|
39
51
|
publish_gem:
|
40
|
-
executor:
|
52
|
+
executor: ruby
|
41
53
|
steps:
|
42
54
|
- buildevents/with_job_span:
|
43
55
|
steps:
|
data/Gemfile.lock
CHANGED
@@ -1,64 +1,74 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
carwow_rubocop (
|
4
|
+
carwow_rubocop (6.2.0)
|
5
5
|
rubocop (>= 1.44)
|
6
|
+
rubocop-factory_bot
|
6
7
|
rubocop-performance
|
7
|
-
rubocop-rspec
|
8
|
+
rubocop-rspec (>= 3.2, < 3.6)
|
8
9
|
|
9
10
|
GEM
|
10
11
|
remote: https://rubygems.org/
|
11
12
|
specs:
|
12
|
-
ast (2.4.
|
13
|
+
ast (2.4.3)
|
13
14
|
coderay (1.1.3)
|
14
|
-
diff-lcs (1.5.
|
15
|
-
json (2.
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
diff-lcs (1.5.1)
|
16
|
+
json (2.10.2)
|
17
|
+
language_server-protocol (3.17.0.4)
|
18
|
+
lint_roller (1.1.0)
|
19
|
+
method_source (1.1.0)
|
20
|
+
parallel (1.26.3)
|
21
|
+
parser (3.3.7.4)
|
19
22
|
ast (~> 2.4.1)
|
20
|
-
|
23
|
+
racc
|
24
|
+
prism (1.4.0)
|
25
|
+
pry (0.15.0)
|
21
26
|
coderay (~> 1.1)
|
22
27
|
method_source (~> 1.0)
|
28
|
+
racc (1.8.1)
|
23
29
|
rainbow (3.1.1)
|
24
|
-
rake (13.
|
25
|
-
regexp_parser (2.
|
26
|
-
|
27
|
-
|
28
|
-
rspec-
|
29
|
-
rspec-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
rspec-expectations (3.12.2)
|
30
|
+
rake (13.2.1)
|
31
|
+
regexp_parser (2.10.0)
|
32
|
+
rspec (3.13.0)
|
33
|
+
rspec-core (~> 3.13.0)
|
34
|
+
rspec-expectations (~> 3.13.0)
|
35
|
+
rspec-mocks (~> 3.13.0)
|
36
|
+
rspec-core (3.13.0)
|
37
|
+
rspec-support (~> 3.13.0)
|
38
|
+
rspec-expectations (3.13.0)
|
34
39
|
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
-
rspec-support (~> 3.
|
36
|
-
rspec-mocks (3.
|
40
|
+
rspec-support (~> 3.13.0)
|
41
|
+
rspec-mocks (3.13.1)
|
37
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
38
|
-
rspec-support (~> 3.
|
39
|
-
rspec-support (3.
|
40
|
-
rubocop (1.
|
43
|
+
rspec-support (~> 3.13.0)
|
44
|
+
rspec-support (3.13.1)
|
45
|
+
rubocop (1.75.2)
|
41
46
|
json (~> 2.3)
|
47
|
+
language_server-protocol (~> 3.17.0.2)
|
48
|
+
lint_roller (~> 1.1.0)
|
42
49
|
parallel (~> 1.10)
|
43
|
-
parser (>= 3.
|
50
|
+
parser (>= 3.3.0.2)
|
44
51
|
rainbow (>= 2.2.2, < 4.0)
|
45
|
-
regexp_parser (>=
|
46
|
-
|
47
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
52
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
53
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
48
54
|
ruby-progressbar (~> 1.7)
|
49
|
-
unicode-display_width (>= 2.4.0, <
|
50
|
-
rubocop-ast (1.
|
51
|
-
parser (>= 3.
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
rubocop (
|
59
|
-
|
55
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
56
|
+
rubocop-ast (1.44.0)
|
57
|
+
parser (>= 3.3.7.2)
|
58
|
+
prism (~> 1.4)
|
59
|
+
rubocop-factory_bot (2.26.1)
|
60
|
+
rubocop (~> 1.61)
|
61
|
+
rubocop-performance (1.24.0)
|
62
|
+
lint_roller (~> 1.1)
|
63
|
+
rubocop (>= 1.72.1, < 2.0)
|
64
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
65
|
+
rubocop-rspec (3.5.0)
|
66
|
+
lint_roller (~> 1.1)
|
67
|
+
rubocop (~> 1.72, >= 1.72.1)
|
60
68
|
ruby-progressbar (1.13.0)
|
61
|
-
unicode-display_width (
|
69
|
+
unicode-display_width (3.1.4)
|
70
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
71
|
+
unicode-emoji (4.0.4)
|
62
72
|
|
63
73
|
PLATFORMS
|
64
74
|
ruby
|
@@ -71,4 +81,4 @@ DEPENDENCIES
|
|
71
81
|
rspec
|
72
82
|
|
73
83
|
BUNDLED WITH
|
74
|
-
2.4.
|
84
|
+
2.4.17
|
data/carwow_rubocop.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'carwow_rubocop'
|
7
7
|
spec.version = RuboCop::Carwow::VERSION
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2
|
9
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.2')
|
10
10
|
spec.authors = ['carwow Developers']
|
11
11
|
spec.email = ['developers@carwow.co.uk']
|
12
12
|
spec.summary = "carwow's rubocop configuration"
|
@@ -35,7 +35,8 @@ Gem::Specification.new do |spec|
|
|
35
35
|
|
36
36
|
spec.add_dependency 'rubocop', '>= 1.44'
|
37
37
|
spec.add_dependency 'rubocop-performance'
|
38
|
-
spec.add_dependency 'rubocop-rspec'
|
38
|
+
spec.add_dependency 'rubocop-rspec', '>= 3.2', '< 3.6'
|
39
|
+
spec.add_dependency 'rubocop-factory_bot'
|
39
40
|
spec.metadata = {
|
40
41
|
'rubygems_mfa_required' => 'true'
|
41
42
|
}
|
data/config/default.yml
CHANGED
data/config/rubocop-rspec.yml
CHANGED
data/config/rubocop-style.yml
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: carwow_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- carwow Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -96,6 +96,26 @@ dependencies:
|
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: rubocop-rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.2'
|
104
|
+
- - "<"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '3.6'
|
107
|
+
type: :runtime
|
108
|
+
prerelease: false
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '3.2'
|
114
|
+
- - "<"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '3.6'
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: rubocop-factory_bot
|
99
119
|
requirement: !ruby/object:Gem::Requirement
|
100
120
|
requirements:
|
101
121
|
- - ">="
|
@@ -130,6 +150,7 @@ files:
|
|
130
150
|
- config/default.yml
|
131
151
|
- config/rubocop-bundler.yml
|
132
152
|
- config/rubocop-carwow.yml
|
153
|
+
- config/rubocop-factory_bot.yml
|
133
154
|
- config/rubocop-gemspec.yml
|
134
155
|
- config/rubocop-layout.yml
|
135
156
|
- config/rubocop-lint.yml
|
@@ -162,14 +183,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
162
183
|
requirements:
|
163
184
|
- - ">="
|
164
185
|
- !ruby/object:Gem::Version
|
165
|
-
version: 2
|
186
|
+
version: '3.2'
|
166
187
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
188
|
requirements:
|
168
189
|
- - ">="
|
169
190
|
- !ruby/object:Gem::Version
|
170
191
|
version: '0'
|
171
192
|
requirements: []
|
172
|
-
rubygems_version: 3.
|
193
|
+
rubygems_version: 3.5.23
|
173
194
|
signing_key:
|
174
195
|
specification_version: 4
|
175
196
|
summary: carwow's rubocop configuration
|