gnar-style 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +14 -11
- data/lib/gnar/style/version.rb +1 -1
- data/rubocop/rubocop.yml +3 -13
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a21b8d1f98a0a48f425ae8b51a893b4ca7334f7606d5967d53542f66cdfc6c15
|
4
|
+
data.tar.gz: d939908158767f0fc32eee5cea867502abe59b2b46a5a82592b15625f4326ae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff1657954b0066d0020195e54ac38d32e33ed5dddf07ccdfcfb9f92ee25a28dd38ac1c87a63762c0bb0a1226e04be00c03d2d438e896594906ee51bb4043da5b
|
7
|
+
data.tar.gz: 56467dad958db6b673f9c6aba8624fa5a26a3cf5b73fa9dd966f46428da0690cc40243095b9e1702630b694d384ff1547dbb1532417a943ff5205a394c9bfbc9
|
data/CHANGELOG.md
CHANGED
@@ -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)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gnar-style (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.
|
13
|
+
ast (2.4.1)
|
14
14
|
diff-lcs (1.3)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
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.
|
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-
|
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.
|
66
|
+
2.1.4
|
data/lib/gnar/style/version.rb
CHANGED
data/rubocop/rubocop.yml
CHANGED
@@ -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.
|
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-
|
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.
|
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: []
|