ruboconf 1.16.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +15 -13
- data/cops/lint.yml +15 -0
- data/cops/performance.yml +3 -0
- data/cops/style.yml +12 -0
- data/ruboconf.gemspec +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1a9615d7916a83bda00d547db133593a642c730b6052138da85b8213e745df7
|
4
|
+
data.tar.gz: c14fa01c649510b80ed2bb756411754609832bd2ac07bcc2d9bcd5abe4b1d430
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c24614de6756c185cdfce08f1ca4ca5bb766ac4113dd3ee1973bc67a8037afd3b497cc71f6163519dfe4cbee071816f2b4e4237569df577b45db75d9fd56c42
|
7
|
+
data.tar.gz: bfab825c380811986751f921ee86f71ecb02ad77e44d3b17657ad8e28f05459f497338a810ec8db41fd7fcbe84b6bf5a667674ccbe61929b521eecb2337b2de5
|
data/Gemfile.lock
CHANGED
@@ -1,41 +1,43 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ruboconf (1.
|
5
|
-
rubocop (~> 1.
|
6
|
-
rubocop-performance (~> 1.
|
4
|
+
ruboconf (1.17.0)
|
5
|
+
rubocop (~> 1.70.0)
|
6
|
+
rubocop-performance (~> 1.23.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
11
|
ast (2.4.2)
|
12
|
-
json (2.
|
12
|
+
json (2.9.1)
|
13
13
|
language_server-protocol (3.17.0.3)
|
14
14
|
parallel (1.26.3)
|
15
|
-
parser (3.3.
|
15
|
+
parser (3.3.7.0)
|
16
16
|
ast (~> 2.4.1)
|
17
17
|
racc
|
18
18
|
racc (1.8.1)
|
19
19
|
rainbow (3.1.1)
|
20
20
|
rake (13.2.1)
|
21
|
-
regexp_parser (2.
|
22
|
-
rubocop (1.
|
21
|
+
regexp_parser (2.10.0)
|
22
|
+
rubocop (1.70.0)
|
23
23
|
json (~> 2.3)
|
24
24
|
language_server-protocol (>= 3.17.0)
|
25
25
|
parallel (~> 1.10)
|
26
26
|
parser (>= 3.3.0.2)
|
27
27
|
rainbow (>= 2.2.2, < 4.0)
|
28
|
-
regexp_parser (>= 2.
|
29
|
-
rubocop-ast (>= 1.
|
28
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
29
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
30
30
|
ruby-progressbar (~> 1.7)
|
31
|
-
unicode-display_width (>= 2.4.0, <
|
32
|
-
rubocop-ast (1.
|
31
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
32
|
+
rubocop-ast (1.37.0)
|
33
33
|
parser (>= 3.3.1.0)
|
34
|
-
rubocop-performance (1.
|
34
|
+
rubocop-performance (1.23.1)
|
35
35
|
rubocop (>= 1.48.1, < 2.0)
|
36
36
|
rubocop-ast (>= 1.31.1, < 2.0)
|
37
37
|
ruby-progressbar (1.13.0)
|
38
|
-
unicode-display_width (
|
38
|
+
unicode-display_width (3.1.4)
|
39
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
40
|
+
unicode-emoji (4.0.4)
|
39
41
|
|
40
42
|
PLATFORMS
|
41
43
|
x86_64-linux
|
data/cops/lint.yml
CHANGED
@@ -10,6 +10,9 @@ Lint/AmbiguousRange:
|
|
10
10
|
Lint/ConstantOverwrittenInRescue:
|
11
11
|
Enabled: true
|
12
12
|
|
13
|
+
Lint/ConstantReassignment:
|
14
|
+
Enabled: true
|
15
|
+
|
13
16
|
Lint/DeprecatedConstants:
|
14
17
|
Enabled: true
|
15
18
|
|
@@ -37,6 +40,9 @@ Lint/EmptyClass:
|
|
37
40
|
Lint/EmptyInPattern:
|
38
41
|
Enabled: true
|
39
42
|
|
43
|
+
Lint/HashNewWithKeywordArgumentsAsDefault:
|
44
|
+
Enabled: true
|
45
|
+
|
40
46
|
Lint/IncompatibleIoSelectWithFiberScheduler:
|
41
47
|
Enabled: true
|
42
48
|
|
@@ -61,6 +67,9 @@ Lint/NonAtomicFileOperation:
|
|
61
67
|
Lint/NumberedParameterAssignment:
|
62
68
|
Enabled: true
|
63
69
|
|
70
|
+
Lint/NumericOperationWithConstantResult:
|
71
|
+
Enabled: true
|
72
|
+
|
64
73
|
Lint/OrAssignmentToConstant:
|
65
74
|
Enabled: true
|
66
75
|
|
@@ -79,6 +88,9 @@ Lint/RequireRangeParentheses:
|
|
79
88
|
Lint/RequireRelativeSelfPath:
|
80
89
|
Enabled: true
|
81
90
|
|
91
|
+
Lint/SharedMutableDefault:
|
92
|
+
Enabled: true
|
93
|
+
|
82
94
|
Lint/SymbolConversion:
|
83
95
|
Enabled: true
|
84
96
|
|
@@ -103,6 +115,9 @@ Lint/UnusedBlockArgument:
|
|
103
115
|
Lint/UselessAssignment:
|
104
116
|
Enabled: true
|
105
117
|
|
118
|
+
Lint/UselessDefined:
|
119
|
+
Enabled: true
|
120
|
+
|
106
121
|
Lint/UselessNumericOperation:
|
107
122
|
Enabled: true
|
108
123
|
|
data/cops/performance.yml
CHANGED
data/cops/style.yml
CHANGED
@@ -28,6 +28,9 @@ Style/ConcatArrayLiterals:
|
|
28
28
|
Style/DataInheritance:
|
29
29
|
Enabled: true
|
30
30
|
|
31
|
+
Style/DigChain:
|
32
|
+
Enabled: true
|
33
|
+
|
31
34
|
Style/DirEmpty:
|
32
35
|
Enabled: true
|
33
36
|
|
@@ -58,9 +61,15 @@ Style/FetchEnvVar:
|
|
58
61
|
Style/FileEmpty:
|
59
62
|
Enabled: true
|
60
63
|
|
64
|
+
Style/FileNull:
|
65
|
+
Enabled: true
|
66
|
+
|
61
67
|
Style/FileRead:
|
62
68
|
Enabled: true
|
63
69
|
|
70
|
+
Style/FileTouch:
|
71
|
+
Enabled: true
|
72
|
+
|
64
73
|
Style/FileWrite:
|
65
74
|
Enabled: true
|
66
75
|
|
@@ -91,6 +100,9 @@ Style/IfWithBooleanLiteralBranches:
|
|
91
100
|
Style/InPatternThen:
|
92
101
|
Enabled: false
|
93
102
|
|
103
|
+
Style/ItAssignment:
|
104
|
+
Enabled: true
|
105
|
+
|
94
106
|
Style/KeywordArgumentsMerging:
|
95
107
|
Enabled: true
|
96
108
|
|
data/ruboconf.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "ruboconf"
|
5
|
-
spec.version = "1.
|
5
|
+
spec.version = "1.17.0"
|
6
6
|
spec.authors = ["Richard Böhme"]
|
7
7
|
spec.email = ["richard.boehme1999@gmail.com"]
|
8
8
|
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
spec.add_dependency "rubocop", "~> 1.
|
26
|
-
spec.add_dependency "rubocop-performance", "~> 1.
|
25
|
+
spec.add_dependency "rubocop", "~> 1.70.0"
|
26
|
+
spec.add_dependency "rubocop-performance", "~> 1.23.0"
|
27
27
|
spec.metadata["rubygems_mfa_required"] = "true"
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruboconf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Böhme
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.70.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.70.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.23.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: 1.23.0
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- richard.boehme1999@gmail.com
|