optimum-energy-rubocop 0.8.1 → 0.9.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: fa0e4b4d65ddb628c934d693f0e915943546f453d13dfc01aa6ed25f58ba6f90
4
- data.tar.gz: f9cfe71f9ae0bc5235b46779e5e341081b5c604ffcfea5a351f2948558e50688
3
+ metadata.gz: 8322f1b8f9d18a2dc7646791216ed97109c6a110cb2195440d5e817e21f3e4bd
4
+ data.tar.gz: 75d29dde6822eb2bf73a1d7cb071a5adce83ada641974c6d3c4ad411af65569f
5
5
  SHA512:
6
- metadata.gz: fcd7478818f930352cc13019365e7f8e3d2cca4839dc090b7159ed9e1eb3afd263eb006550d2f051900d1f605a6503b15e8282722df8fcebbfb7c10137c1cf35
7
- data.tar.gz: e31f1d4117e6083341213425891ae6dda408e1db57cad73712a8c367b6f945143706e6b88f83a3e2ba7770d2011d1ba10f62ade68da23b8b95dfdba1275abdb9
6
+ metadata.gz: a60a7085e1ea560b2e815a9ff7c5df2d13de94cbd0973ed07e92a140a3f236d584f6e9ac537bdd2fdf5a233b5e5814c1b18768e3233259d64e5485009a7fafb6
7
+ data.tar.gz: 3cd74a4678114e7da84d8d4dcbd7a7786b19c852413469f630d66cb54da425033166b6d1e5533244a5cfbc4dfaa47ca7c73e5935f41b0debf9e362d9eabf88b1
data/Gemfile.lock CHANGED
@@ -2,53 +2,54 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  optimum-energy-rubocop (0.8.1)
5
- rubocop (~> 1.42.0)
5
+ rubocop (~> 1.45.1)
6
6
  rubocop-rails (~> 2.17.4)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.0.4)
11
+ activesupport (7.0.4.2)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 1.6, < 2)
14
14
  minitest (>= 5.1)
15
15
  tzinfo (~> 2.0)
16
16
  ast (2.4.2)
17
- concurrent-ruby (1.1.10)
17
+ concurrent-ruby (1.2.0)
18
18
  i18n (1.12.0)
19
19
  concurrent-ruby (~> 1.0)
20
20
  json (2.6.3)
21
21
  minitest (5.17.0)
22
22
  parallel (1.22.1)
23
- parser (3.2.0.0)
23
+ parser (3.2.1.0)
24
24
  ast (~> 2.4.1)
25
- rack (3.0.3)
25
+ rack (3.0.4.1)
26
26
  rainbow (3.1.1)
27
- regexp_parser (2.6.1)
27
+ regexp_parser (2.7.0)
28
28
  rexml (3.2.5)
29
- rubocop (1.42.0)
29
+ rubocop (1.45.1)
30
30
  json (~> 2.3)
31
31
  parallel (~> 1.10)
32
- parser (>= 3.1.2.1)
32
+ parser (>= 3.2.0.0)
33
33
  rainbow (>= 2.2.2, < 4.0)
34
34
  regexp_parser (>= 1.8, < 3.0)
35
35
  rexml (>= 3.2.5, < 4.0)
36
36
  rubocop-ast (>= 1.24.1, < 2.0)
37
37
  ruby-progressbar (~> 1.7)
38
- unicode-display_width (>= 1.4.0, < 3.0)
39
- rubocop-ast (1.24.1)
40
- parser (>= 3.1.1.0)
38
+ unicode-display_width (>= 2.4.0, < 3.0)
39
+ rubocop-ast (1.26.0)
40
+ parser (>= 3.2.1.0)
41
41
  rubocop-rails (2.17.4)
42
42
  activesupport (>= 4.2.0)
43
43
  rack (>= 1.1)
44
44
  rubocop (>= 1.33.0, < 2.0)
45
45
  ruby-progressbar (1.11.0)
46
- tzinfo (2.0.5)
46
+ tzinfo (2.0.6)
47
47
  concurrent-ruby (~> 1.0)
48
48
  unicode-display_width (2.4.2)
49
49
 
50
50
  PLATFORMS
51
- x86_64-darwin-19
51
+ x86_64-darwin-21
52
+ x86_64-linux
52
53
 
53
54
  DEPENDENCIES
54
55
  optimum-energy-rubocop!
data/VERSION.txt CHANGED
@@ -1 +1 @@
1
- 0.8.1
1
+ 0.9.0
@@ -9,6 +9,6 @@ Gem::Specification.new do |spec|
9
9
 
10
10
  spec.files = `git ls-files -z`.split("\x0")
11
11
 
12
- spec.add_dependency "rubocop", "~> 1.42.0"
12
+ spec.add_dependency "rubocop", "~> 1.45.1"
13
13
  spec.add_dependency "rubocop-rails", "~> 2.17.4"
14
14
  end
@@ -225,6 +225,9 @@ Style/AccessModifierDeclarations:
225
225
  Style/ClassAndModuleChildren:
226
226
  Enabled: false
227
227
 
228
+ Style/CombinableLoops:
229
+ Enabled: false
230
+
228
231
  Style/ConditionalAssignment:
229
232
  EnforcedStyle: assign_to_condition
230
233
 
@@ -262,18 +265,27 @@ Style/FrozenStringLiteralComment:
262
265
  Style/HashEachMethods:
263
266
  Enabled: true
264
267
 
268
+ Style/HashSyntax:
269
+ Enabled: false
270
+
265
271
  Style/HashTransformKeys:
266
272
  Enabled: true
267
273
 
268
274
  Style/HashTransformValues:
269
275
  Enabled: true
270
276
 
277
+ Style/HashLikeCase:
278
+ Enabled: false
279
+
271
280
  Style/MultilineBlockChain:
272
281
  Enabled: false
273
282
 
274
283
  Style/MultilineTernaryOperator:
275
284
  Enabled: false
276
285
 
286
+ Style/OptionalBooleanParameter:
287
+ Enabled: false
288
+
277
289
  Style/PercentLiteralDelimiters:
278
290
  Enabled: false
279
291
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: optimum-energy-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Optimum Energy
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.42.0
19
+ version: 1.45.1
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.42.0
26
+ version: 1.45.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rails
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,8 +38,8 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 2.17.4
41
- description:
42
- email:
41
+ description:
42
+ email:
43
43
  executables: []
44
44
  extensions: []
45
45
  extra_rdoc_files: []
@@ -64,7 +64,7 @@ homepage: https://github.com/optimiumenergyco/optimum-energy-rubocop
64
64
  licenses:
65
65
  - MIT
66
66
  metadata: {}
67
- post_install_message:
67
+ post_install_message:
68
68
  rdoc_options: []
69
69
  require_paths:
70
70
  - lib
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  version: '0'
81
81
  requirements: []
82
82
  rubygems_version: 3.3.3
83
- signing_key:
83
+ signing_key:
84
84
  specification_version: 4
85
85
  summary: The shared Rubocop configuration for Optimum Energy
86
86
  test_files: []