rubocop-gooddog 0.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/config/default.yml +6 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e0a162ba88b656334caa1adad6e33f71cc77ba76a64b7031c2f8a767a5d05d1
|
|
4
|
+
data.tar.gz: 3abc434d78f5d8ff33c4758804c6feeea481adfc7bda2d37dfdc009e42790e10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5057a9c2890ac5fe4a28bf81ebdf4d477d9bc4010df7fe8dd4ce2aaeec27971d83265b61fdca3ab2345bdd9381e93460da44ca413ed62b1fce106758155fb2f6
|
|
7
|
+
data.tar.gz: f91d8f77fc6385ca19a654c743f5ff0075404f51789b1516ca97bc6257f8342fc3922f7ddf4c4ca32853f865b9f7ca5affeba6247f422dcb0b47540945c20230
|
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.5] - 2021-02-10
|
|
8
|
+
### Added
|
|
9
|
+
- Disabled default cops `Style/Lambda` and `Style/IfWithBooleanLiteralBranches`. `Style/Lambda` we disagree with any of the provided options and `Style/IfWithBooleanLiteralBranches` resulted in a non-equivalent fix.
|
|
10
|
+
|
|
7
11
|
## [0.4] - 2020-04-29
|
|
8
12
|
### Added
|
|
9
13
|
- Set alternative configuration for `Metrics/ClassLength`, bumped the value up to 150 from the default 100 for a little more breathing room. Past 150 abstraction really should be considered.
|
data/config/default.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-gooddog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.5'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Brooks
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 1.9.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 1.9.1
|
|
27
27
|
description: Code style checking for Good Dog Design Ruby repositories
|
|
28
28
|
email:
|
|
29
29
|
- james@gooddogdesign.com
|
|
@@ -42,7 +42,7 @@ metadata:
|
|
|
42
42
|
homepage_uri: https://github.com/gooddog/rubocop-gooddog
|
|
43
43
|
source_code_uri: https://github.com/gooddog/rubocop-gooddog
|
|
44
44
|
changelog_uri: https://github.com/gooddog/rubocop-gooddog/blob/master/CHANGELOG.md
|
|
45
|
-
post_install_message:
|
|
45
|
+
post_install_message:
|
|
46
46
|
rdoc_options: []
|
|
47
47
|
require_paths:
|
|
48
48
|
- lib
|
|
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
58
58
|
version: '0'
|
|
59
59
|
requirements: []
|
|
60
60
|
rubygems_version: 3.0.3
|
|
61
|
-
signing_key:
|
|
61
|
+
signing_key:
|
|
62
62
|
specification_version: 4
|
|
63
63
|
summary: RuboCop GoodDog
|
|
64
64
|
test_files: []
|