makandra-rubocop 3.0.0 → 3.1.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: b0942fa4b06e6919c0158759988528dbbb5d390c38640259ad87c9282c17f762
4
- data.tar.gz: ee7fe82d6916b524afe242425a9d35c6450491c66623c94801b8cdc48f7d10f1
3
+ metadata.gz: f7eaf641bac5672f4f47481f172ce07ff5ea45b3b707132564d55aa6314b2639
4
+ data.tar.gz: 6a313081cb6926fad9a3b61efdd0fa58deffb7c4bbd411cdc05bad7cc0cc0867
5
5
  SHA512:
6
- metadata.gz: e1b191539a58bb8ec1f51f0a18988b52cdfcbdc37110438868abb2c4de1abbfa63f16a8afe3cbba4b5b5787fe495360f41951d1c2db8f488ca1a5f1b1c8ee5a3
7
- data.tar.gz: b8a345569f94cae49240def4b124ee93ef940ca5e12ed65bb091d8ceadb04b7a6ac1cd97d1cdc414ccbaac7d58b95f876e986d4386ab05c2425078d37a4d50f5
6
+ metadata.gz: c64c7aa445acc4ca819e8e038cbc455e5a370cf6061d665614ffc6c3710ec371e7ef6f96d879366cb197cadd5fdc1663711d1bededfdb71d70806a8d59114f3c
7
+ data.tar.gz: cae553429a67814ad47ec603d90bbb448758847459ba8d5ce12822b6c6819d91a78c41366795bd91a7fd57f7ea0c8ffb1123401c2048fd9f6fe80d2b4e40d12e
@@ -14,6 +14,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
14
14
  -
15
15
 
16
16
 
17
+ ## 3.1.0 - 2019-02-29
18
+
19
+ ### Compatible changes
20
+
21
+ - Disable `Layout/SpaceAfterColon` (#6)
22
+ - Disable `Layout/RescueEnsureAlignment` (#7)
23
+
24
+
17
25
  ## 3.0.0 - 2019-02-28
18
26
 
19
27
  ### Breaking changes
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makandra-rubocop (3.0.0)
4
+ makandra-rubocop (3.1.0)
5
5
  rubocop (~> 0.65.0)
6
6
 
7
7
  GEM
@@ -876,7 +876,7 @@ Layout/MultilineOperationIndentation:
876
876
 
877
877
  Layout/RescueEnsureAlignment:
878
878
  Description: 'Align rescues and ensures correctly.'
879
- Enabled: true
879
+ Enabled: false # Temporarily disabled (see #7 and rubocop-hq/rubocop#6771)
880
880
  VersionAdded: '0.49'
881
881
 
882
882
  Layout/SpaceAfterColon:
@@ -1872,7 +1872,7 @@ Naming/MethodName:
1872
1872
  Naming/PredicateName:
1873
1873
  Description: 'Check the names of predicate methods.'
1874
1874
  StyleGuide: '#bool-methods-qmark'
1875
- Enabled: true
1875
+ Enabled: false # It is not very important for us and there are cases where people want to use it (See issue #6)
1876
1876
  VersionAdded: '0.50'
1877
1877
  VersionChanged: '0.51'
1878
1878
  # Predicate name prefixes.
@@ -1,3 +1,3 @@
1
1
  module MakandraRubocop
2
- VERSION = '3.0.0'.freeze
2
+ VERSION = '3.1.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: 3.0.0
4
+ version: 3.1.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: 2019-02-28 00:00:00.000000000 Z
12
+ date: 2019-04-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  version: '0'
98
98
  requirements: []
99
99
  rubyforge_project:
100
- rubygems_version: 2.7.7
100
+ rubygems_version: 2.7.6
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: makandra's default Rubocop configuration