ruboconf 1.14.0 → 1.15.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e9822a5fc5e8b576480a4e473891f7a8edf0affd2090d43e33e38911dc5ce11
4
- data.tar.gz: b3a41fe501886e24b3b7f43f9a803cd04b24b751bdc2678b966fbbb31a5730a1
3
+ metadata.gz: 36a6ffd2a1488ef79a25b182b53e3574d7fe57fcedd557f501fb2875f330a621
4
+ data.tar.gz: 9bebfa879e7834f6aba4a8fbacc69bd379b69753f0baa55d0518b7ac06be159b
5
5
  SHA512:
6
- metadata.gz: c194aab2724454486ddc58a284bb64fff4cf8cd318b9cccff883e8ecaf109502a29a0e1b1329baf41efe997f5e950da05c7a5f01f7cddb99989d494541f7db5d
7
- data.tar.gz: f0c19cd502c1b4f97d7c5290a7a3c0570ed85e3116c5694baee5037ba3173112ab47dcd852f88d594b4477c42c6ba6996ef1c200f9c8755703fb97dec44f246b
6
+ metadata.gz: 79e069cb56d1791f7b4ba208aec284cde6c194f32f3cb7d7fa10401f1865fd66b338af2e38704f10f394f2d68eaac86c82347fc9435779c45611d849023e1ac5
7
+ data.tar.gz: 92dd32cdf386aebae0af7349869d7a7fb6c02e070c787b676e4c34aa1f04644e07f4c5f2a50f2bbcdc7cfeca2205d21b52ecfec54b790170179d591ab4e34107
data/Gemfile CHANGED
@@ -5,4 +5,4 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in ruboconf.gemspec
6
6
  gemspec
7
7
 
8
- gem 'rake', '~> 13.0'
8
+ gem 'rake', '~> 13.2'
data/Gemfile.lock CHANGED
@@ -1,49 +1,47 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruboconf (1.14.0)
5
- rubocop (~> 1.61.0)
6
- rubocop-performance (~> 1.20.0)
4
+ ruboconf (1.15.0)
5
+ rubocop (~> 1.66.0)
6
+ rubocop-performance (~> 1.22.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
11
  ast (2.4.2)
12
- json (2.7.1)
12
+ json (2.7.2)
13
13
  language_server-protocol (3.17.0.3)
14
- parallel (1.24.0)
15
- parser (3.3.0.5)
14
+ parallel (1.26.3)
15
+ parser (3.3.5.0)
16
16
  ast (~> 2.4.1)
17
17
  racc
18
- racc (1.7.3)
18
+ racc (1.8.1)
19
19
  rainbow (3.1.1)
20
- rake (13.0.6)
21
- regexp_parser (2.9.0)
22
- rexml (3.2.6)
23
- rubocop (1.61.0)
20
+ rake (13.2.1)
21
+ regexp_parser (2.9.2)
22
+ rubocop (1.66.1)
24
23
  json (~> 2.3)
25
24
  language_server-protocol (>= 3.17.0)
26
25
  parallel (~> 1.10)
27
26
  parser (>= 3.3.0.2)
28
27
  rainbow (>= 2.2.2, < 4.0)
29
- regexp_parser (>= 1.8, < 3.0)
30
- rexml (>= 3.2.5, < 4.0)
31
- rubocop-ast (>= 1.30.0, < 2.0)
28
+ regexp_parser (>= 2.4, < 3.0)
29
+ rubocop-ast (>= 1.32.2, < 2.0)
32
30
  ruby-progressbar (~> 1.7)
33
31
  unicode-display_width (>= 2.4.0, < 3.0)
34
- rubocop-ast (1.31.1)
35
- parser (>= 3.3.0.4)
36
- rubocop-performance (1.20.2)
32
+ rubocop-ast (1.32.3)
33
+ parser (>= 3.3.1.0)
34
+ rubocop-performance (1.22.1)
37
35
  rubocop (>= 1.48.1, < 2.0)
38
- rubocop-ast (>= 1.30.0, < 2.0)
36
+ rubocop-ast (>= 1.31.1, < 2.0)
39
37
  ruby-progressbar (1.13.0)
40
- unicode-display_width (2.5.0)
38
+ unicode-display_width (2.6.0)
41
39
 
42
40
  PLATFORMS
43
41
  x86_64-linux
44
42
 
45
43
  DEPENDENCIES
46
- rake (~> 13.0)
44
+ rake (~> 13.2)
47
45
  ruboconf!
48
46
 
49
47
  BUNDLED WITH
data/cops/gemspec.yml CHANGED
@@ -1,3 +1,6 @@
1
+ Gemspec/AddRuntimeDependency:
2
+ Enabled: true
3
+
1
4
  Gemspec/DeprecatedAttributeAssignment:
2
5
  Enabled: true
3
6
 
data/cops/lint.yml CHANGED
@@ -97,6 +97,9 @@ Lint/UnusedBlockArgument:
97
97
  Lint/UselessAssignment:
98
98
  Enabled: true
99
99
 
100
+ Lint/UselessNumericOperation:
101
+ Enabled: true
102
+
100
103
  Lint/UselessRescue:
101
104
  Enabled: true
102
105
 
data/cops/style.yml CHANGED
@@ -94,6 +94,9 @@ Style/MagicCommentFormat:
94
94
  Style/MapCompactWithConditionalBlock:
95
95
  Enabled: true
96
96
 
97
+ Style/MapIntoArray:
98
+ Enabled: true
99
+
97
100
  Style/MapToHash:
98
101
  Enabled: true
99
102
 
@@ -184,6 +187,9 @@ Style/RedundantHeredocDelimiterQuotes:
184
187
  Style/RedundantInitialize:
185
188
  Enabled: true
186
189
 
190
+ Style/RedundantInterpolationUnfreeze:
191
+ Enabled: true
192
+
187
193
  Style/RedundantLineContinuation:
188
194
  Enabled: true
189
195
 
@@ -208,12 +214,18 @@ Style/ReturnNilInPredicateMethodDefinition:
208
214
  Style/SelectByRegexp:
209
215
  Enabled: true
210
216
 
217
+ Style/SendWithLiteralMethodName:
218
+ Enabled: true
219
+
211
220
  Style/SingleLineDoEndBlock:
212
221
  Enabled: true
213
222
 
214
223
  Style/StringChars:
215
224
  Enabled: true
216
225
 
226
+ Style/SuperArguments:
227
+ Enabled: true
228
+
217
229
  Style/SuperWithArgsParentheses:
218
230
  Enabled: true
219
231
 
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.14.0'
5
+ spec.version = '1.15.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.61.0'
26
- spec.add_dependency 'rubocop-performance', '~> 1.20.0'
25
+ spec.add_dependency 'rubocop', '~> 1.66.0'
26
+ spec.add_dependency 'rubocop-performance', '~> 1.22.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.14.0
4
+ version: 1.15.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: 2024-03-01 00:00:00.000000000 Z
11
+ date: 2024-09-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.61.0
19
+ version: 1.66.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.61.0
26
+ version: 1.66.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.20.0
33
+ version: 1.22.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.20.0
40
+ version: 1.22.0
41
41
  description:
42
42
  email:
43
43
  - richard.boehme1999@gmail.com