makandra-rubocop 4.0.0 → 4.1.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 +10 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/config/ext/rails.yml +1 -1
- data/lib/makandra_rubocop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed4f3bb8f84c35f5f0bc560dbafc42332ce2c15ddc711e5d9894911f071f1479
|
|
4
|
+
data.tar.gz: db6052625fb1b26512904150682a03944e9cd69c83b45670e58ff73cc65f4fdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b290a98d1231d239ea9f3e4ef4d958b083579a3d39c1b49252ffb9e775388a2ceadbc3ab1f27b733a4562902402b91c6ba9292d51dbe2ff25d5809e795ab0404
|
|
7
|
+
data.tar.gz: 3894157e1095f4281c5355cfff354eef5d5e05a0ce886f49ce4623a3d3660cdc914a68710ec167a97ed030cb556cd71781af46fb57b0b3cae483c7cabaed9e2e
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
9
9
|
### Compatible changes
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## 4.1.0 - 2019-12-06
|
|
13
|
+
|
|
14
|
+
### Compatible changes
|
|
15
|
+
|
|
16
|
+
- Disable Rails/UnknownEnv cop
|
|
17
|
+
|
|
12
18
|
## 4.0.0 - 2019-12-06
|
|
13
19
|
|
|
14
20
|
### Breaking changes
|
|
@@ -49,6 +55,10 @@ inherit_gem:
|
|
|
49
55
|
- config/ext/rails.yml
|
|
50
56
|
```
|
|
51
57
|
|
|
58
|
+
### Compatible changes
|
|
59
|
+
|
|
60
|
+
- Use `Rspec.describe` instead of `describe` in the shared spec to support projects, that have the RSpec monkey patch disabled
|
|
61
|
+
|
|
52
62
|
|
|
53
63
|
## 3.2.1 - 2019-11-14
|
|
54
64
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -39,9 +39,9 @@ inherit_gem:
|
|
|
39
39
|
- config/ext/rails.yml
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
Any per-project rules can then be defined in `.rubocop.yml`:
|
|
42
|
+
Any per-project rules can then be defined in the `.rubocop.yml`:
|
|
43
43
|
|
|
44
|
-
```
|
|
44
|
+
```yaml
|
|
45
45
|
inherit_gem:
|
|
46
46
|
makandra-rubocop:
|
|
47
47
|
- config/default.yml
|
data/config/ext/rails.yml
CHANGED
|
@@ -469,7 +469,7 @@ Rails/UniqBeforePluck:
|
|
|
469
469
|
|
|
470
470
|
Rails/UnknownEnv:
|
|
471
471
|
Description: 'Use correct environment name.'
|
|
472
|
-
Enabled:
|
|
472
|
+
Enabled: false # https://github.com/makandra/makandra-rubocop/issues/11
|
|
473
473
|
VersionAdded: '0.51'
|
|
474
474
|
Environments:
|
|
475
475
|
- development
|