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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e13cb25e1fc2909b27e6ab09a9febe2f3f107ce
4
- data.tar.gz: 7c73588f837d50b0a31fa6d9ea61774cb87a0cc0
3
+ metadata.gz: 3c57c5c332edae313e6073436a7f4fd2112cc691
4
+ data.tar.gz: 9117442ff7058d2f0347cc27299cfd0176013ed6
5
5
  SHA512:
6
- metadata.gz: 9c82eb9ac650259796c068e43b2b524cf7250643e94e504bd52a90fd341033b5976352af4dc98441680dc3dd154e6f91112f8fc889778768e656286ca700e5b8
7
- data.tar.gz: c48fe0f66ebe642d27127dadb9c65dee037b0dc7baaa745313f50f81ba4853335c498f3c8cb81e70981170d8514dc77e5e86cb4250d6812659b45ca58a3a3d61
6
+ metadata.gz: 80232fc3a7e8718add974cba8b68d578bd851e08f1cb961ea8f9cf0dc8c5d5cf1c22c5f5816f0d421cb1f83bf8a5aba2b3c9784f35145f65a614b7b30f6b0e1d
7
+ data.tar.gz: 99d659e6a2a6be17504fb02a30b5d7f6bb6a95088394c891ff91cf0b04be80fd96b2661f84bf2494b95372e1146ce5eccf109a41f8366e76d6fb4899cd67d7e9
@@ -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)
@@ -1,5 +1,3 @@
1
- # coding: utf-8
2
-
3
1
  lib = File.expand_path("../lib", __FILE__)
4
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
3
  require "gnar/style/version"
@@ -1,5 +1,5 @@
1
1
  module Gnar
2
2
  module Style
3
- VERSION = "0.2.0".freeze
3
+ VERSION = "0.3.0".freeze
4
4
  end
5
5
  end
@@ -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.2.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-08-02 00:00:00.000000000 Z
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.11
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