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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c748c28b6295e75d04c1254c1c1181fca72fdf9daee553d0386635c70fc36c3f
4
- data.tar.gz: 8ca3a1e46f1c26fb51e6685e71bcbda08f84c80c42a8764502ff24a3e5948060
3
+ metadata.gz: ed4f3bb8f84c35f5f0bc560dbafc42332ce2c15ddc711e5d9894911f071f1479
4
+ data.tar.gz: db6052625fb1b26512904150682a03944e9cd69c83b45670e58ff73cc65f4fdd
5
5
  SHA512:
6
- metadata.gz: 886ac6d00bd7db5eeebbabebf5c9a9da369d4b4ca6781d0ece5fd48d98e0c82094ec96295c1f1590955afb2942f288c96de7bb8cd6e200006facfcad412f31c2
7
- data.tar.gz: 41758cfc49b67543b80bd19a9a6452a2b4468a897571f9d0209bf3dab73da8d601817ce530a2e9cfe0b3770f7505a684f315a7495edfb2c5de5dc42f92e7c5c1
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makandra-rubocop (4.0.0)
4
+ makandra-rubocop (4.1.0)
5
5
  rubocop (~> 0.76.0)
6
6
  rubocop-rails (~> 2.3.2)
7
7
 
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: true
472
+ Enabled: false # https://github.com/makandra/makandra-rubocop/issues/11
473
473
  VersionAdded: '0.51'
474
474
  Environments:
475
475
  - development
@@ -1,3 +1,3 @@
1
1
  module MakandraRubocop
2
- VERSION = '4.0.0'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makandra-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Hartherz