gnar-style 0.11.0 → 0.12.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: 729299072eff335fa727b843b9e6e04d76f974cacdbf08f4f5107a9bc98bf66a
4
- data.tar.gz: 65d1a151698694ff6c4bb5c327c91b56a91b48b47b8112bba88f2f36f2455749
3
+ metadata.gz: a21b8d1f98a0a48f425ae8b51a893b4ca7334f7606d5967d53542f66cdfc6c15
4
+ data.tar.gz: d939908158767f0fc32eee5cea867502abe59b2b46a5a82592b15625f4326ae3
5
5
  SHA512:
6
- metadata.gz: 1b0a3d9b9b4ef0bf8c4b7926c96b4bb8b5a895e66d49404701bf748c85608e1690b32e25931571bbc434fc77e4a1d88dcf803badf9560c5e3190cae561cee8d7
7
- data.tar.gz: 809f7191017d586ad1c714ec90b91df4383041e4b041e6d9e6b98c18d233b41db8f900ec1fe35028ef6779f43bb1206a1f85f54aea8f96bf9905f67932d319a0
6
+ metadata.gz: ff1657954b0066d0020195e54ac38d32e33ed5dddf07ccdfcfb9f92ee25a28dd38ac1c87a63762c0bb0a1226e04be00c03d2d438e896594906ee51bb4043da5b
7
+ data.tar.gz: 56467dad958db6b673f9c6aba8624fa5a26a3cf5b73fa9dd966f46428da0690cc40243095b9e1702630b694d384ff1547dbb1532417a943ff5205a394c9bfbc9
@@ -1,5 +1,11 @@
1
1
  ## Current release (in development)
2
2
 
3
+ ## 0.12.0 - 2020-06-29
4
+
5
+ * Enable pending rules by default. [#50](https://github.com/TheGnarCo/gnar-style/pull/50)
6
+
7
+ [Kevin Murphy](https://github.com/kevin-j-m)
8
+
3
9
  ## 0.11.0 - 2020-04-16
4
10
 
5
11
  * Enable pending cops from rubocop version 0.80. [#49](https://github.com/TheGnarCo/gnar-style/pull/49)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gnar-style (0.11.0)
4
+ gnar-style (0.12.0)
5
5
  rubocop (~> 0.78)
6
6
  rubocop-performance
7
7
  rubocop-rails (~> 2.2.0)
@@ -10,15 +10,15 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- ast (2.4.0)
13
+ ast (2.4.1)
14
14
  diff-lcs (1.3)
15
- jaro_winkler (1.5.4)
16
- parallel (1.19.1)
17
- parser (2.7.1.1)
18
- ast (~> 2.4.0)
19
- rack (2.2.2)
15
+ parallel (1.19.2)
16
+ parser (2.7.1.4)
17
+ ast (~> 2.4.1)
18
+ rack (2.2.3)
20
19
  rainbow (3.0.0)
21
20
  rake (13.0.1)
21
+ regexp_parser (1.7.1)
22
22
  rexml (3.2.4)
23
23
  rspec (3.9.0)
24
24
  rspec-core (~> 3.9.0)
@@ -33,15 +33,18 @@ GEM
33
33
  diff-lcs (>= 1.2.0, < 2.0)
34
34
  rspec-support (~> 3.9.0)
35
35
  rspec-support (3.9.2)
36
- rubocop (0.82.0)
37
- jaro_winkler (~> 1.5.1)
36
+ rubocop (0.86.0)
38
37
  parallel (~> 1.10)
39
38
  parser (>= 2.7.0.1)
40
39
  rainbow (>= 2.2.2, < 4.0)
40
+ regexp_parser (>= 1.7)
41
41
  rexml
42
+ rubocop-ast (>= 0.0.3, < 1.0)
42
43
  ruby-progressbar (~> 1.7)
43
44
  unicode-display_width (>= 1.4.0, < 2.0)
44
- rubocop-performance (1.5.2)
45
+ rubocop-ast (0.1.0)
46
+ parser (>= 2.7.0.1)
47
+ rubocop-performance (1.6.1)
45
48
  rubocop (>= 0.71.0)
46
49
  rubocop-rails (2.2.1)
47
50
  rack (>= 1.1)
@@ -60,4 +63,4 @@ DEPENDENCIES
60
63
  rspec (~> 3.0)
61
64
 
62
65
  BUNDLED WITH
63
- 2.1.2
66
+ 2.1.4
@@ -1,5 +1,5 @@
1
1
  module Gnar
2
2
  module Style
3
- VERSION = "0.11.0".freeze
3
+ VERSION = "0.12.0".freeze
4
4
  end
5
5
  end
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ NewCops: enable
3
+
1
4
  require: rubocop-performance
2
5
 
3
6
  Layout/ArgumentAlignment:
@@ -62,16 +65,3 @@ Style/TrailingCommaInArrayLiteral:
62
65
 
63
66
  Style/TrailingCommaInHashLiteral:
64
67
  EnforcedStyleForMultiline: comma
65
-
66
- # ---------------------------------------------------
67
- # PENDING COPS: REMOVE AFTER INCORPORATED INTO RUBOCOP
68
- # ---------------------------------------------------
69
-
70
- Style/HashEachMethods:
71
- Enabled: true
72
-
73
- Style/HashTransformKeys:
74
- Enabled: true
75
-
76
- Style/HashTransformValues:
77
- Enabled: true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gnar-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Gnar Company
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-16 00:00:00.000000000 Z
11
+ date: 2020-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -108,7 +108,7 @@ dependencies:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '3.0'
111
- description:
111
+ description:
112
112
  email:
113
113
  - hi@thegnar.co
114
114
  executables:
@@ -142,7 +142,7 @@ homepage: https://github.com/TheGnarCo/gnar-style
142
142
  licenses:
143
143
  - MIT
144
144
  metadata: {}
145
- post_install_message:
145
+ post_install_message:
146
146
  rdoc_options: []
147
147
  require_paths:
148
148
  - lib
@@ -157,8 +157,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  - !ruby/object:Gem::Version
158
158
  version: '0'
159
159
  requirements: []
160
- rubygems_version: 3.1.2
161
- signing_key:
160
+ rubygems_version: 3.1.4
161
+ signing_key:
162
162
  specification_version: 4
163
163
  summary: Style guide default configuration for The Gnar Company
164
164
  test_files: []