gnar-style 0.2.0 → 0.3.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 +5 -0
- data/gnar-style.gemspec +0 -2
- data/lib/gnar/style/version.rb +1 -1
- data/rubocop/rubocop.yml +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c57c5c332edae313e6073436a7f4fd2112cc691
|
|
4
|
+
data.tar.gz: 9117442ff7058d2f0347cc27299cfd0176013ed6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80232fc3a7e8718add974cba8b68d578bd851e08f1cb961ea8f9cf0dc8c5d5cf1c22c5f5816f0d421cb1f83bf8a5aba2b3c9784f35145f65a614b7b30f6b0e1d
|
|
7
|
+
data.tar.gz: 99d659e6a2a6be17504fb02a30b5d7f6bb6a95088394c891ff91cf0b04be80fd96b2661f84bf2494b95372e1146ce5eccf109a41f8366e76d6fb4899cd67d7e9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
## Current release (in development)
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
* Enforce trailing commas for multi-line literals and method calls. [#10](https://github.com/TheGnarCo/gnar-style/pull/10)
|
|
6
|
+
*Zach Fletcher*
|
|
7
|
+
|
|
3
8
|
## 0.2.0
|
|
4
9
|
|
|
5
10
|
* Move rubocop template files into `rubocop/` directory rather than the ambiguous `gnar_style/` directory. [#4](https://github.com/TheGnarCo/gnar-style/pull/4)
|
data/gnar-style.gemspec
CHANGED
data/lib/gnar/style/version.rb
CHANGED
data/rubocop/rubocop.yml
CHANGED
|
@@ -13,6 +13,12 @@ Style/FrozenStringLiteralComment:
|
|
|
13
13
|
Style/Documentation:
|
|
14
14
|
Enabled: false
|
|
15
15
|
|
|
16
|
+
Style/TrailingCommaInArguments:
|
|
17
|
+
EnforcedStyleForMultiline: comma
|
|
18
|
+
|
|
19
|
+
Style/TrailingCommaInLiteral:
|
|
20
|
+
EnforcedStyleForMultiline: comma
|
|
21
|
+
|
|
16
22
|
Style/SymbolArray:
|
|
17
23
|
EnforcedStyle: brackets
|
|
18
24
|
|
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.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Gnar Company
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
129
|
rubyforge_project:
|
|
130
|
-
rubygems_version: 2.6.
|
|
130
|
+
rubygems_version: 2.6.14
|
|
131
131
|
signing_key:
|
|
132
132
|
specification_version: 4
|
|
133
133
|
summary: Style guide default configuration for The Gnar Company
|