makandra-rubocop 3.0.0 → 3.1.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/config/default.yml +2 -2
- data/lib/makandra_rubocop/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7eaf641bac5672f4f47481f172ce07ff5ea45b3b707132564d55aa6314b2639
|
|
4
|
+
data.tar.gz: 6a313081cb6926fad9a3b61efdd0fa58deffb7c4bbd411cdc05bad7cc0cc0867
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c64c7aa445acc4ca819e8e038cbc455e5a370cf6061d665614ffc6c3710ec371e7ef6f96d879366cb197cadd5fdc1663711d1bededfdb71d70806a8d59114f3c
|
|
7
|
+
data.tar.gz: cae553429a67814ad47ec603d90bbb448758847459ba8d5ce12822b6c6819d91a78c41366795bd91a7fd57f7ea0c8ffb1123401c2048fd9f6fe80d2b4e40d12e
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
data/Gemfile.lock
CHANGED
data/config/default.yml
CHANGED
|
@@ -876,7 +876,7 @@ Layout/MultilineOperationIndentation:
|
|
|
876
876
|
|
|
877
877
|
Layout/RescueEnsureAlignment:
|
|
878
878
|
Description: 'Align rescues and ensures correctly.'
|
|
879
|
-
Enabled:
|
|
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:
|
|
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.
|
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.
|
|
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-
|
|
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.
|
|
100
|
+
rubygems_version: 2.7.6
|
|
101
101
|
signing_key:
|
|
102
102
|
specification_version: 4
|
|
103
103
|
summary: makandra's default Rubocop configuration
|