rubocop-gooddog 0.8 → 0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/config/default.yml +3 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b8bfd3967c0d5d9ceef16882aa1974fe7657dfe61a3836ffc2c967b66601754
|
4
|
+
data.tar.gz: c3f318a67b050fc1c85413d86e5f7930a2e433f302da3ea55cb843a2b846efbf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0396d6a0e19cbf87bacad9d5ac6b71b6f2de1901d98aabf26f8b893c4560a9c22e0fe05247c1ea196496074aaec024bb0e9e784916475444d11c7c7ce5b279bf'
|
7
|
+
data.tar.gz: 34e8a90086dd0467a4314c61a0e362ca5df58c7a683bcb9da57aa9c93e0ab24073810c18f7b0c98db56e794c4bdc9ca9a903db02438bfe39f7590b10272be3b8
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.9] - 2021-08-20
|
8
|
+
### Added
|
9
|
+
- Disabled default cop `Naming/InclusiveLanguage`. `Naming/InclusiveLanguage` is politically biased and should not be included by default.
|
10
|
+
|
7
11
|
## [0.8] - 2021-07-24
|
8
12
|
### Added
|
9
13
|
- `Metrics/ParameterLists` configured to not count keyword arguments as they add less complexity than positional or optional parameters.
|
data/config/default.yml
CHANGED
metadata
CHANGED
@@ -1,19 +1,22 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-gooddog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.9'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Brooks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
17
20
|
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 1.9.1
|
@@ -21,6 +24,9 @@ dependencies:
|
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.9'
|
24
30
|
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
32
|
version: 1.9.1
|