rubocop_plus 2.3.0 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a6c4d83e0eaa313ed29e8c9db6fb5e6619ecd28318179e423b7ebde92c49534
4
- data.tar.gz: 05f47dc020cf260502f7ff9f02bbc2b95f347dcf94a12273123e7c5a75ab0b63
3
+ metadata.gz: 234915bf8e4dd1464880d2c3025fd60401c47b52d52ac0366579379bcadaccf2
4
+ data.tar.gz: 0d26e5190fd14be41fd4c798f9a54ee321bd1658bdc35c26b7f5ac47a78a150c
5
5
  SHA512:
6
- metadata.gz: 89f25b7e0ffdf7a8d3dd8ca0570958b8af02065edacb13e6d9c43fcb63aab852ee2a7e10be63315dc26b4e10473ee1d7dbe142c3bbcf8f493daeb0e8c11e116d
7
- data.tar.gz: '04848543ddb9639fbc1377d568f07218b08d673f8b0f55962e6b656dfd1254d73bab9fb55ab26045ba573de8e3948ba8303c38c2f6de3a5b6513283a913b644d'
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:
@@ -1,4 +1,4 @@
1
1
  module RubocopPlus
2
- VERSION = "2.3.0".freeze
2
+ VERSION = "2.4.0".freeze
3
3
  RUBOCOP_VERSION = '1.18.4'.freeze
4
4
  end
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.3.0
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-07-29 00:00:00.000000000 Z
11
+ date: 2021-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler