rubocop-codeur 0.6.1 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/quality.yml +3 -3
- data/.github/workflows/test.yml +3 -3
- data/Gemfile.lock +17 -17
- data/default.yml +2 -1
- data/lib/rubocop/codeur/version.rb +1 -1
- data/rubocop-codeur.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c76039b5d4194c383f7eafb97be5da1e51c5f88d4399dbdc64f340f4cc5f038c
|
4
|
+
data.tar.gz: a689f49a3df9fae69f459cee70c122b8908be147f68e46ef3f3166dcb6dfafd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7405fe993c9debd0ab60e526739093d3d2aa75b30f5eaae10932b60ed08d6641e35dc4fe33ce0f235dccbb50f8326ad6429f6bf137e7dad529b7b2c16e619aa2
|
7
|
+
data.tar.gz: 630ac220b75c4365c9f42212b7478512b72362b0c1d0afbdf39402f5d23b17b7631fa8c29620380af509c599347fd46cd3a9bd19b1107a4b8b454f60d7d3049c
|
@@ -8,13 +8,13 @@ jobs:
|
|
8
8
|
runs-on: ubuntu-latest
|
9
9
|
steps:
|
10
10
|
- name: Check out code
|
11
|
-
uses: actions/checkout@
|
11
|
+
uses: actions/checkout@v3
|
12
12
|
- uses: ruby/setup-ruby@v1
|
13
13
|
with:
|
14
|
-
ruby-version:
|
14
|
+
ruby-version: 3.1
|
15
15
|
bundler-cache: true
|
16
16
|
- name: Run Rubocop
|
17
|
-
uses: reviewdog/action-rubocop@
|
17
|
+
uses: reviewdog/action-rubocop@v2
|
18
18
|
with:
|
19
19
|
github_token: ${{ secrets.github_token }}
|
20
20
|
rubocop_version: gemfile
|
data/.github/workflows/test.yml
CHANGED
@@ -12,10 +12,10 @@ jobs:
|
|
12
12
|
|
13
13
|
strategy:
|
14
14
|
matrix:
|
15
|
-
ruby: ['
|
15
|
+
ruby: ['3.1']
|
16
16
|
|
17
17
|
steps:
|
18
|
-
- uses: actions/checkout@
|
18
|
+
- uses: actions/checkout@v3
|
19
19
|
|
20
20
|
- name: Set up Ruby ${{ matrix.ruby }}
|
21
21
|
uses: ruby/setup-ruby@v1
|
@@ -35,7 +35,7 @@ jobs:
|
|
35
35
|
failedThreshold: 100
|
36
36
|
|
37
37
|
- name: Upload coverage
|
38
|
-
uses: actions/upload-artifact@
|
38
|
+
uses: actions/upload-artifact@v3
|
39
39
|
with:
|
40
40
|
name: Coverage
|
41
41
|
path: coverage
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rubocop-codeur (0.
|
4
|
+
rubocop-codeur (0.7.1)
|
5
5
|
rubocop (~> 1.25)
|
6
6
|
rubocop-minitest (~> 0.20)
|
7
7
|
rubocop-performance (~> 1.9, >= 1.9.2)
|
@@ -20,39 +20,39 @@ GEM
|
|
20
20
|
docile (1.4.0)
|
21
21
|
i18n (1.12.0)
|
22
22
|
concurrent-ruby (~> 1.0)
|
23
|
-
json (2.6.
|
24
|
-
minitest (5.
|
23
|
+
json (2.6.3)
|
24
|
+
minitest (5.17.0)
|
25
25
|
parallel (1.22.1)
|
26
|
-
parser (3.
|
26
|
+
parser (3.2.0.0)
|
27
27
|
ast (~> 2.4.1)
|
28
|
-
rack (3.0.
|
28
|
+
rack (3.0.3)
|
29
29
|
rainbow (3.1.1)
|
30
30
|
rake (13.0.6)
|
31
|
-
regexp_parser (2.6.
|
31
|
+
regexp_parser (2.6.1)
|
32
32
|
rexml (3.2.5)
|
33
|
-
rubocop (1.
|
33
|
+
rubocop (1.43.0)
|
34
34
|
json (~> 2.3)
|
35
35
|
parallel (~> 1.10)
|
36
|
-
parser (>= 3.
|
36
|
+
parser (>= 3.2.0.0)
|
37
37
|
rainbow (>= 2.2.2, < 4.0)
|
38
38
|
regexp_parser (>= 1.8, < 3.0)
|
39
39
|
rexml (>= 3.2.5, < 4.0)
|
40
|
-
rubocop-ast (>= 1.
|
40
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
41
41
|
ruby-progressbar (~> 1.7)
|
42
|
-
unicode-display_width (>=
|
43
|
-
rubocop-ast (1.
|
42
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
43
|
+
rubocop-ast (1.24.1)
|
44
44
|
parser (>= 3.1.1.0)
|
45
|
-
rubocop-minitest (0.
|
45
|
+
rubocop-minitest (0.25.1)
|
46
46
|
rubocop (>= 0.90, < 2.0)
|
47
|
-
rubocop-performance (1.15.
|
47
|
+
rubocop-performance (1.15.2)
|
48
48
|
rubocop (>= 1.7.0, < 2.0)
|
49
49
|
rubocop-ast (>= 0.4.0)
|
50
|
-
rubocop-rails (2.17.
|
50
|
+
rubocop-rails (2.17.4)
|
51
51
|
activesupport (>= 4.2.0)
|
52
52
|
rack (>= 1.1)
|
53
53
|
rubocop (>= 1.33.0, < 2.0)
|
54
54
|
ruby-progressbar (1.11.0)
|
55
|
-
simplecov (0.
|
55
|
+
simplecov (0.22.0)
|
56
56
|
docile (~> 1.1)
|
57
57
|
simplecov-html (~> 0.11)
|
58
58
|
simplecov_json_formatter (~> 0.1)
|
@@ -60,7 +60,7 @@ GEM
|
|
60
60
|
simplecov_json_formatter (0.1.4)
|
61
61
|
tzinfo (2.0.5)
|
62
62
|
concurrent-ruby (~> 1.0)
|
63
|
-
unicode-display_width (2.
|
63
|
+
unicode-display_width (2.4.2)
|
64
64
|
|
65
65
|
PLATFORMS
|
66
66
|
ruby
|
@@ -72,4 +72,4 @@ DEPENDENCIES
|
|
72
72
|
simplecov
|
73
73
|
|
74
74
|
BUNDLED WITH
|
75
|
-
2.
|
75
|
+
2.3.26
|
data/default.yml
CHANGED
@@ -14,7 +14,7 @@ AllCops:
|
|
14
14
|
- 'bin/*'
|
15
15
|
- 'test/dummy/db/schema.rb'
|
16
16
|
- 'test/dummy/tmp/**/*'
|
17
|
-
TargetRubyVersion:
|
17
|
+
TargetRubyVersion: 3.1
|
18
18
|
TargetRailsVersion: 7
|
19
19
|
NewCops: enable
|
20
20
|
|
@@ -292,6 +292,7 @@ Style/HashEachMethods:
|
|
292
292
|
Style/HashSyntax:
|
293
293
|
Enabled: true
|
294
294
|
EnforcedStyle: ruby19
|
295
|
+
EnforcedShorthandSyntax: never
|
295
296
|
|
296
297
|
Style/HashTransformKeys:
|
297
298
|
Enabled: true
|
data/rubocop-codeur.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = 'Shared rubocop config gem for every Ruby projects at Codeur SARL'
|
13
13
|
spec.homepage = 'https://github.com/codeur/rubocop-codeur'
|
14
14
|
spec.license = 'MIT'
|
15
|
-
spec.required_ruby_version =
|
15
|
+
spec.required_ruby_version = '>= 3.1'
|
16
16
|
|
17
17
|
# Specify which files should be added to the gem when it is released.
|
18
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-codeur
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Codeur
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -111,7 +111,7 @@ homepage: https://github.com/codeur/rubocop-codeur
|
|
111
111
|
licenses:
|
112
112
|
- MIT
|
113
113
|
metadata: {}
|
114
|
-
post_install_message:
|
114
|
+
post_install_message:
|
115
115
|
rdoc_options: []
|
116
116
|
require_paths:
|
117
117
|
- lib
|
@@ -119,15 +119,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
119
119
|
requirements:
|
120
120
|
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
|
-
version:
|
122
|
+
version: '3.1'
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
125
|
- - ">="
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
|
-
rubygems_version: 3.
|
130
|
-
signing_key:
|
129
|
+
rubygems_version: 3.3.26
|
130
|
+
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: Codeur rubocop config gem
|
133
133
|
test_files: []
|