netsoft-rubocop 1.0.1 → 1.0.2
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 +6 -0
- data/default.yml +4 -1
- data/lib/netsoft/rubocop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42f5eb03efee42ae00c20783523ffc3bacceea1b70e6fa4ebb242cf2a104e5e8
|
|
4
|
+
data.tar.gz: a20b0c422a7d58e54a0bbbb60152904a1b69d2fe271565e6a146629bf7cee5b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 590e1f8a6b8b1e46ac1f155a74c5b7f155a28f9cbdb66c62381bb69722e2982f347dbadf49508ac1361fbf87b03136b34c7afaa75e744a98300b7ab279f2d81c
|
|
7
|
+
data.tar.gz: 1e1cff02bbe014b3884dd0c60a70a1a4601d901c3ddade0836dcceb7c8c83c18cc4b493a8434708a5c61bec72649a3dbbb7e9c72cad2faf56dec5bd6eb4a498a
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
|
|
11
|
+
## [1.0.2] - 2020-09-09
|
|
12
|
+
### Changed
|
|
13
|
+
- Disable Style/DoubleNegation cop
|
|
14
|
+
- Set ruby version to 2.5 by default
|
|
15
|
+
|
|
10
16
|
## [1.0.1] - 2019-10-11
|
|
11
17
|
### Added
|
|
12
18
|
- Adjusted MultilineMethodCallIndentation rule
|
data/default.yml
CHANGED
|
@@ -5,7 +5,7 @@ require:
|
|
|
5
5
|
- rubocop-rspec
|
|
6
6
|
|
|
7
7
|
AllCops:
|
|
8
|
-
TargetRubyVersion: 2.
|
|
8
|
+
TargetRubyVersion: 2.5
|
|
9
9
|
TargetRailsVersion: 5.2
|
|
10
10
|
DisplayStyleGuide: true
|
|
11
11
|
StyleGuideBaseURL: https://rubystyle.guide
|
|
@@ -119,3 +119,6 @@ Style/TrailingCommaInHashLiteral:
|
|
|
119
119
|
|
|
120
120
|
Metrics:
|
|
121
121
|
Enabled: false
|
|
122
|
+
|
|
123
|
+
Style/DoubleNegation:
|
|
124
|
+
Enabled: false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: netsoft-rubocop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Yarotsky
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|