ruboconf 1.12.0 → 1.14.0

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: 5aff169bc8f583a7106af764aa9c58cda1823f7b5df4966af3a61ba391cfdcb7
4
- data.tar.gz: bb57a39edd0d08f3abab518a46bc24a69e7a7ebc5c3a23cde39752406bab5eeb
3
+ metadata.gz: 9e9822a5fc5e8b576480a4e473891f7a8edf0affd2090d43e33e38911dc5ce11
4
+ data.tar.gz: b3a41fe501886e24b3b7f43f9a803cd04b24b751bdc2678b966fbbb31a5730a1
5
5
  SHA512:
6
- metadata.gz: d7132b68d2cde6a16b9a55c4634fd9b4ef44750920a72328c6aace4e7a2d169bc05c99186ff440ce2710a2e85cc800a111f44195aa63741902646fc247dd2c57
7
- data.tar.gz: eb94fa9f99f9d2c3f84fd55bdc2c1cd5b501a7d947ee62c92a1e4f3b3996031b32d59ef2ac9226fa984caf5316ac489d52e641e390b6fef3c4778fc7d575c79a
6
+ metadata.gz: c194aab2724454486ddc58a284bb64fff4cf8cd318b9cccff883e8ecaf109502a29a0e1b1329baf41efe997f5e950da05c7a5f01f7cddb99989d494541f7db5d
7
+ data.tar.gz: f0c19cd502c1b4f97d7c5290a7a3c0570ed85e3116c5694baee5037ba3173112ab47dcd852f88d594b4477c42c6ba6996ef1c200f9c8755703fb97dec44f246b
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.2.2
1
+ ruby 3.3.0
data/Gemfile.lock CHANGED
@@ -1,43 +1,43 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruboconf (1.12.0)
5
- rubocop (~> 1.54)
6
- rubocop-performance (~> 1.18)
4
+ ruboconf (1.14.0)
5
+ rubocop (~> 1.61.0)
6
+ rubocop-performance (~> 1.20.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
11
  ast (2.4.2)
12
- json (2.6.3)
12
+ json (2.7.1)
13
13
  language_server-protocol (3.17.0.3)
14
- parallel (1.23.0)
15
- parser (3.2.2.3)
14
+ parallel (1.24.0)
15
+ parser (3.3.0.5)
16
16
  ast (~> 2.4.1)
17
17
  racc
18
- racc (1.7.1)
18
+ racc (1.7.3)
19
19
  rainbow (3.1.1)
20
20
  rake (13.0.6)
21
- regexp_parser (2.8.1)
22
- rexml (3.2.5)
23
- rubocop (1.54.0)
21
+ regexp_parser (2.9.0)
22
+ rexml (3.2.6)
23
+ rubocop (1.61.0)
24
24
  json (~> 2.3)
25
25
  language_server-protocol (>= 3.17.0)
26
26
  parallel (~> 1.10)
27
- parser (>= 3.2.2.3)
27
+ parser (>= 3.3.0.2)
28
28
  rainbow (>= 2.2.2, < 4.0)
29
29
  regexp_parser (>= 1.8, < 3.0)
30
30
  rexml (>= 3.2.5, < 4.0)
31
- rubocop-ast (>= 1.28.0, < 2.0)
31
+ rubocop-ast (>= 1.30.0, < 2.0)
32
32
  ruby-progressbar (~> 1.7)
33
33
  unicode-display_width (>= 2.4.0, < 3.0)
34
- rubocop-ast (1.29.0)
35
- parser (>= 3.2.1.0)
36
- rubocop-performance (1.18.0)
37
- rubocop (>= 1.7.0, < 2.0)
38
- rubocop-ast (>= 0.4.0)
34
+ rubocop-ast (1.31.1)
35
+ parser (>= 3.3.0.4)
36
+ rubocop-performance (1.20.2)
37
+ rubocop (>= 1.48.1, < 2.0)
38
+ rubocop-ast (>= 1.30.0, < 2.0)
39
39
  ruby-progressbar (1.13.0)
40
- unicode-display_width (2.4.2)
40
+ unicode-display_width (2.5.0)
41
41
 
42
42
  PLATFORMS
43
43
  x86_64-linux
data/cops/lint.yml CHANGED
@@ -37,9 +37,15 @@ Lint/EmptyInPattern:
37
37
  Lint/IncompatibleIoSelectWithFiberScheduler:
38
38
  Enabled: true
39
39
 
40
+ Lint/ItWithoutArgumentsInBlock:
41
+ Enabled: true
42
+
40
43
  Lint/LambdaWithoutLiteralBlock:
41
44
  Enabled: true
42
45
 
46
+ Lint/LiteralAssignmentInCondition:
47
+ Enabled: true
48
+
43
49
  Lint/MixedCaseRange:
44
50
  Enabled: true
45
51
 
data/cops/performance.yml CHANGED
@@ -19,6 +19,9 @@ Performance/ConstantRegexp:
19
19
  Performance/MapCompact:
20
20
  Enabled: true
21
21
 
22
+ Performance/MapMethodChain:
23
+ Enabled: true
24
+
22
25
  Performance/MethodObjectAsBlock:
23
26
  Enabled: true
24
27
 
data/cops/style.yml CHANGED
@@ -208,9 +208,15 @@ Style/ReturnNilInPredicateMethodDefinition:
208
208
  Style/SelectByRegexp:
209
209
  Enabled: true
210
210
 
211
+ Style/SingleLineDoEndBlock:
212
+ Enabled: true
213
+
211
214
  Style/StringChars:
212
215
  Enabled: true
213
216
 
217
+ Style/SuperWithArgsParentheses:
218
+ Enabled: true
219
+
214
220
  Style/SwapValues:
215
221
  Enabled: true
216
222
 
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.12.0'
5
+ spec.version = '1.14.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.54'
26
- spec.add_dependency 'rubocop-performance', '~> 1.18'
25
+ spec.add_dependency 'rubocop', '~> 1.61.0'
26
+ spec.add_dependency 'rubocop-performance', '~> 1.20.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.12.0
4
+ version: 1.14.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: 2023-07-01 00:00:00.000000000 Z
11
+ date: 2024-03-01 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.54'
19
+ version: 1.61.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.54'
26
+ version: 1.61.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.18'
33
+ version: 1.20.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.18'
40
+ version: 1.20.0
41
41
  description:
42
42
  email:
43
43
  - richard.boehme1999@gmail.com
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  - !ruby/object:Gem::Version
87
87
  version: '0'
88
88
  requirements: []
89
- rubygems_version: 3.4.10
89
+ rubygems_version: 3.5.3
90
90
  signing_key:
91
91
  specification_version: 4
92
92
  summary: Opinionated Rubocop configuration for personal projects.