cookstyle 1.3.0 → 1.3.1

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
  SHA1:
3
- metadata.gz: 75b32711348d3f0b5891a824438bd01b37ce7fd6
4
- data.tar.gz: f5d36c386380ec83f1451fcd8febc76465daef7a
3
+ metadata.gz: 4d4ab3ddabd1473bf32c5707be89070b583e748a
4
+ data.tar.gz: 2c0c396037324dd4e39467f37546f11583dcd406
5
5
  SHA512:
6
- metadata.gz: b24c45f4629433a677a32d2b0da198d9c4553118979868e63f99ec3a6834de6b71c69bda1b3bc08dbfa5e8887ecd083bd3388dcbf37d93db005d0cc62621caf9
7
- data.tar.gz: 462d275f1fae9a901196afdbe0fc7fd10870843dc9bd5f7be4b40437ecee2355ebeb17aa401ca6b5e118ac7590a9c820ad4bc2e48cda47e1608db42774537208
6
+ metadata.gz: 9037270106bb5e2617eb80efbcc584c918cad7c78681653490875179ea175c2b949da8041fc7ce8b89cef80d40c1a4bc7f14186bed97aadd676f9ad744ad21f9
7
+ data.tar.gz: 7f3b556cfdb36bde6400d38f073d37f02d76fcd7a73f285a6972485a1cbe14fb4e725e4ed752c9264fba3cb23b43e7518e256fd030a7c2a2b1146f6b7ba2dfdd
@@ -1,5 +1,11 @@
1
1
  # Cookstyle Changelog
2
2
 
3
+ ## 1.3.1 (2017-04-17)
4
+
5
+ ### Newly Disabled Cops:
6
+
7
+ - Style/DoubleNegation which is needed in some situations to avoid Chef deprecation warnings
8
+
3
9
  ## 1.3.0 (2017-02-13)
4
10
 
5
11
  - Upgraded the Rubocop engine from 0.46 -> 0.47.1, but disabled all new cops. This aligns cookstyle with the Rubocop in Chefstyle and also resolves multiple bugs in Rubocop 0.46\. If you previously disabled the Lint/Eval cop in your own Rubocop config you'll need to update that with the new cop name of Security/Eval.
@@ -17,6 +17,8 @@ Style/SpaceBeforeFirstArg:
17
17
  Enabled: false
18
18
  Style/ClassAndModuleChildren:
19
19
  Enabled: false
20
+ Style/DoubleNegation:
21
+ Enabled: false
20
22
 
21
23
  # disable all the length cops as they're not appropriate for cookbooks
22
24
  LineLength:
@@ -70,8 +70,6 @@ Style/Documentation:
70
70
  Enabled: true
71
71
  Style/DotPosition:
72
72
  Enabled: true
73
- Style/DoubleNegation:
74
- Enabled: true
75
73
  Style/EachWithObject:
76
74
  Enabled: true
77
75
  Style/ElseAlignment:
@@ -1,4 +1,4 @@
1
1
  module Cookstyle
2
- VERSION = "1.3.0".freeze
2
+ VERSION = "1.3.1".freeze
3
3
  RUBOCOP_VERSION = "0.47.1".freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cookstyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thom May
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-13 00:00:00.000000000 Z
11
+ date: 2017-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  version: '0'
114
114
  requirements: []
115
115
  rubyforge_project:
116
- rubygems_version: 2.5.2
116
+ rubygems_version: 2.6.11
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Rubocop configuration for Chef cookbooks