makandra-rubocop 4.3.0 → 4.4.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: 93e4c18cb367baad1a56c04d738b270e4aceaaf3dc190a76cdf9dfba26bd6c63
4
- data.tar.gz: d5fe465946c21cefa496c01cdd0aadad4a62b11f79ac63b7164f11ee117ab8c9
3
+ metadata.gz: 6c688f4cdc5c1bb4d1035ccfdc5b32688227e7c6533a1337c25e7548920b92fd
4
+ data.tar.gz: e4480870905479fcbdb4bd831b8381095e4a5d222b9bb4a09e2ce1e419a1f71f
5
5
  SHA512:
6
- metadata.gz: 6426ee821d5c9bf2361c0ac82cb492a869c6d014413897644ba34708ba4caefa071f6bd15d2c4c9c0900f7b32b29a128df26075d78faa9ee138a8b90653bf7b4
7
- data.tar.gz: 89fe63ca6d19981fc082a348a4db3db260e1847f60fa06232e07fb498acbc00a4426caf701454890e92e770b1c259057d4e01f4e6b25e2e4b0118a41e4019034
6
+ metadata.gz: 25f99cca27a1da41ade1b0fbd1a09fff143d2e87adc82914487850b3e2f336e08b984b6f43745e9112dd8e7b325648cd9dadbb6a11f956069eb5dcb5a133ca01
7
+ data.tar.gz: d8eb08a5a6beaa4d1d8fe868a29a41c4cdad6b3eff2a34fef9da7b006809a1d25ae2c854cbb8e11bbdab74f013d0a1e88ec779a35714e807df6f5ec06aec0827
data/CHANGELOG.md CHANGED
@@ -9,6 +9,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
  ### Compatible changes
10
10
 
11
11
 
12
+ ## 4.4.0 - 2020-04-06
13
+
14
+ ### Breaking changes
15
+
16
+ ### Compatible changes
17
+
18
+ - Disable `Lint/EmptyWhen` (#18)
19
+ - Disable `Naming/RescuedExceptionsVariableName` (#19)
20
+
21
+
12
22
  ## 4.3.0 - 2020-02-13
13
23
 
14
24
  ### Compatible changes
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makandra-rubocop (4.3.0)
4
+ makandra-rubocop (4.4.0)
5
5
  rubocop (~> 0.76.0)
6
6
  rubocop-rails (~> 2.3.2)
7
7
 
@@ -11,9 +11,9 @@ GEM
11
11
  ast (2.4.0)
12
12
  jaro_winkler (1.5.4)
13
13
  parallel (1.19.1)
14
- parser (2.7.0.1)
14
+ parser (2.7.1.0)
15
15
  ast (~> 2.4.0)
16
- rack (2.0.8)
16
+ rack (2.2.2)
17
17
  rainbow (3.0.0)
18
18
  rake (12.3.2)
19
19
  rubocop (0.76.0)
@@ -27,7 +27,7 @@ GEM
27
27
  rack (>= 1.1)
28
28
  rubocop (>= 0.72.0)
29
29
  ruby-progressbar (1.10.1)
30
- unicode-display_width (1.6.0)
30
+ unicode-display_width (1.6.1)
31
31
 
32
32
  PLATFORMS
33
33
  ruby
data/config/default.yml CHANGED
@@ -1334,7 +1334,7 @@ Lint/EmptyInterpolation:
1334
1334
 
1335
1335
  Lint/EmptyWhen:
1336
1336
  Description: 'Checks for `when` branches with empty bodies.'
1337
- Enabled: true
1337
+ Enabled: false # We want to write comments in when branches without any return value https://github.com/makandra/makandra-rubocop/issues/18
1338
1338
  VersionAdded: '0.45'
1339
1339
 
1340
1340
  Lint/EndInMethod:
@@ -2039,7 +2039,7 @@ Naming/PredicateName:
2039
2039
 
2040
2040
  Naming/RescuedExceptionsVariableName:
2041
2041
  Description: 'Use consistent rescued exceptions variables naming.'
2042
- Enabled: true
2042
+ Enabled: false # We want to be more flexible with the exception name #19
2043
2043
  VersionAdded: '0.67'
2044
2044
  VersionChanged: '0.68'
2045
2045
  PreferredName: e
@@ -1,3 +1,3 @@
1
1
  module MakandraRubocop
2
- VERSION = '4.3.0'.freeze
2
+ VERSION = '4.4.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makandra-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.0
4
+ version: 4.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Hartherz
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-02-13 00:00:00.000000000 Z
12
+ date: 2020-04-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubygems_version: 3.0.6
114
+ rubygems_version: 3.1.2
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: makandra's default Rubocop configuration