rubocop_plus 2.3.0 → 2.4.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 +5 -0
- data/config/rubocop.yml +4 -0
- data/lib/rubocop_plus/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: 234915bf8e4dd1464880d2c3025fd60401c47b52d52ac0366579379bcadaccf2
|
|
4
|
+
data.tar.gz: 0d26e5190fd14be41fd4c798f9a54ee321bd1658bdc35c26b7f5ac47a78a150c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz: '
|
|
6
|
+
metadata.gz: 1981b80a6953c372a5da4e5a2f554422fee474c2486bc836efefcf0236b2cef4de3348bb40f3cff3218d58acabcc6f998dc3126ed084387126e3bb3519189e6d
|
|
7
|
+
data.tar.gz: '038f870c11bbf0c132a35a8117246969d8369195f666dbcbbf5b295194438600e9712d0bf463e7b861b2243a944f2bf09e4093cd37b420a7ccc1d88344850a96'
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Issues are tracked at https://github.com/roberts1000/rubocop_plus/issues. Changes marked as **(Internal)** support development or refactoring.
|
|
4
4
|
|
|
5
|
+
## 2.4.0 (Aug 03, 2021)
|
|
6
|
+
|
|
7
|
+
1. [#147](../../issues/147): Exclude `spec/dummy/config/environments` files for all cops.
|
|
8
|
+
1. [#149](../../issues/149): Exclude `spec/dummy/config/puma.rb` file for all cops.
|
|
9
|
+
|
|
5
10
|
## 2.3.0 (Jul 29, 2021)
|
|
6
11
|
|
|
7
12
|
1. [#129](../../issues/129): Use `rubocop` `1.18.4`.
|
data/config/rubocop.yml
CHANGED
|
@@ -12,6 +12,10 @@ AllCops:
|
|
|
12
12
|
- vendor/**/* # Contains 3rd party libs; no need to check code that originated outside the project
|
|
13
13
|
- node_modules/**/* # Yarn 3rd party dependencies; no need to check code that originated outside the project
|
|
14
14
|
- client/**/* # It's mostly JavaScript, but it may contain 3rd party that was written outside of the project
|
|
15
|
+
- spec/dummy/config/environments/production.rb # A 3rd-party auto-generated file
|
|
16
|
+
- spec/dummy/config/environments/development.rb # A 3rd-party auto-generated file
|
|
17
|
+
- spec/dummy/config/environments/test.rb # A 3rd-party auto-generated file
|
|
18
|
+
- spec/dummy/config/puma.rb # A 3rd-party auto-generated file
|
|
15
19
|
NewCops: enable
|
|
16
20
|
|
|
17
21
|
inherit_from:
|
data/lib/rubocop_plus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop_plus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- roberts1000
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|