rubocul 4.0.2 → 4.0.5

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: e5bd52a56018df2a5ad7f0ea23c93c2c6ec5a19b992ba843a12cabc15ef658e0
4
- data.tar.gz: bf47ccb816607a88f2d9ce107826d4823a3ef59f28983f821b8b01ba4a511539
3
+ metadata.gz: 351c3aad4ac73e4096c622174e1fe0dbba0d10d04b4aea884c12de9cf4979285
4
+ data.tar.gz: 2c9cfa2c4b323dc9fcf84aa2ba0eaa46d1a9edf85898309369564dfbcf93ec8a
5
5
  SHA512:
6
- metadata.gz: 3a733e01711e7cf6b075e80733fb007c7fd580bb5db48ef8ceb13b01d7da1d1848f46a7bf8681bffcf91c25f21d8881b4b3298a8510585ef38fcefc03784640d
7
- data.tar.gz: dd20326ea68a76213a4c7d5d1dd19d7c4ed91efaae5839bfe64951bdbf5d6b22758eb0706b4acade3835484b0ac4b3161032e1341c7037de00e16b79d869961b
6
+ metadata.gz: f476080bee191cc1b88bb56bc2153fc81cfd6b53687c7698a6003c7d4de333eaf2d5a9c612420fbb54746df31854ed9b04031d11a84aa3047ab25c6ebb87d802
7
+ data.tar.gz: d9c03dd2e9ff92d3bfc7b31ff9c746ef2a192bc0d8855c6fedfc3f0c7a91edb68a56eef5be18ab33d32f420ca96a937ea03db40f6a77db2c84ee98b0137b674d
data/rubocul.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'rubocul'
3
- spec.version = '4.0.2'
3
+ spec.version = '4.0.5'
4
4
  spec.authors = ["Eric O'Hanlon", "Ben Armintor", "Carla Galarza"]
5
5
 
6
6
  spec.summary = 'A style configuration for Rubocop'
data/rubocul_default.yml CHANGED
@@ -33,6 +33,18 @@ Layout/HashAlignment:
33
33
  - key
34
34
  - table
35
35
 
36
+ Metrics/BlockLength:
37
+ IgnoredMethods:
38
+ - 'describe' # rspec
39
+ - 'context' # rspec
40
+ - 'namespace' # rake
41
+ - 'task' # rake
42
+
43
+ # Documentation is great, but we're not currently forcing people to add a top level comment
44
+ # to all classes and modules.
45
+ Style/Documentation:
46
+ Enabled: false
47
+
36
48
  Style/RedundantSelf:
37
49
  Enabled: false
38
50
 
@@ -1,2 +1,5 @@
1
1
  require:
2
2
  - rubocop-rspec
3
+
4
+ RSpec/MultipleMemoizedHelpers:
5
+ Enabled: false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocul
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric O'Hanlon
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-03-12 00:00:00.000000000 Z
13
+ date: 2022-07-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  requirements: []
155
- rubygems_version: 3.3.5
155
+ rubygems_version: 3.2.32
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: A style configuration for Rubocop