gnar-style 0.3.0 → 0.4.0

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
- SHA1:
3
- metadata.gz: 3c57c5c332edae313e6073436a7f4fd2112cc691
4
- data.tar.gz: 9117442ff7058d2f0347cc27299cfd0176013ed6
2
+ SHA256:
3
+ metadata.gz: f053a6d72e08d044f8a09cce72ab2185f9b314985867143cc4f68108b661e768
4
+ data.tar.gz: 5a4a71a029afdb7472bd9f36dad28dc8bac9b97f5d8c7741548f39e067dcacae
5
5
  SHA512:
6
- metadata.gz: 80232fc3a7e8718add974cba8b68d578bd851e08f1cb961ea8f9cf0dc8c5d5cf1c22c5f5816f0d421cb1f83bf8a5aba2b3c9784f35145f65a614b7b30f6b0e1d
7
- data.tar.gz: 99d659e6a2a6be17504fb02a30b5d7f6bb6a95088394c891ff91cf0b04be80fd96b2661f84bf2494b95372e1146ce5eccf109a41f8366e76d6fb4899cd67d7e9
6
+ metadata.gz: 0cc8d5cde9535877ee3113e7572ca61c1a9cd453e9c6656e5b6e5fc972ed1bea096b154595b70599bc955ca5ee2c9ffbbbfb1339d5847db85321cac7294a9598
7
+ data.tar.gz: 93b4bdf1d3325ecd9bdebf86121d4d23d3d3cc5f33538beb754a9f8db910b22623805e11a7bc8ed6d7f2648f7ebcf79e84cd4226294d1bc53aa53c21b6d7416f
@@ -1,11 +1,18 @@
1
1
  ## Current release (in development)
2
2
 
3
- ## 0.3.0
3
+ ## 0.4.0 - 2018-03-05
4
+
5
+ * Update trailing comma literal cops for new rubocop version. [#17](https://github.com/TheGnarCo/gnar-style/pull/17)
6
+ [Kevin Murphy](https://github.com/kevin-j-m)
7
+
8
+ ## 0.3.0 - 2017-11-03
4
9
 
5
10
  * Enforce trailing commas for multi-line literals and method calls. [#10](https://github.com/TheGnarCo/gnar-style/pull/10)
6
- *Zach Fletcher*
7
11
 
8
- ## 0.2.0
12
+ [Zach Fletcher](https://github.com/zfletch)
13
+
14
+ ## 0.2.0 - 2017-08-02
9
15
 
10
16
  * Move rubocop template files into `rubocop/` directory rather than the ambiguous `gnar_style/` directory. [#4](https://github.com/TheGnarCo/gnar-style/pull/4)
11
- *Kevin Murphy*
17
+
18
+ [Kevin Murphy](https://github.com/kevin-j-m)
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at TODO: Write your email address. All
58
+ reported by contacting the project team at conduct@gnar.dog. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
61
  obligated to maintain confidentiality with regard to the reporter of an incident.
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 Kevin Murphy
3
+ Copyright (c) 2018 The Gnar Company
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -127,3 +127,12 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/TheGna
127
127
  ## License
128
128
 
129
129
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
130
+
131
+ ## About The Gnar Company
132
+
133
+ ![The Gnar Company](https://avatars0.githubusercontent.com/u/17011419?s=100&v=4)
134
+
135
+ The Gnar Company is a Boston-based development company that builds robust
136
+ web and mobile apps designed for the long haul.
137
+
138
+ For more information see [our website](https://www.thegnar.co/).
@@ -1,4 +1,4 @@
1
- lib = File.expand_path("../lib", __FILE__)
1
+ lib = File.expand_path("lib", __dir__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require "gnar/style/version"
4
4
 
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency "rubocop", "~> 0.49"
22
+ spec.add_dependency "rubocop", "~> 0.53"
23
23
  spec.add_dependency "thor"
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.14"
@@ -1,5 +1,5 @@
1
1
  module Gnar
2
2
  module Style
3
- VERSION = "0.3.0".freeze
3
+ VERSION = "0.4.0".freeze
4
4
  end
5
5
  end
@@ -16,7 +16,10 @@ Style/Documentation:
16
16
  Style/TrailingCommaInArguments:
17
17
  EnforcedStyleForMultiline: comma
18
18
 
19
- Style/TrailingCommaInLiteral:
19
+ Style/TrailingCommaInArrayLiteral:
20
+ EnforcedStyleForMultiline: comma
21
+
22
+ Style/TrailingCommaInHashLiteral:
20
23
  EnforcedStyleForMultiline: comma
21
24
 
22
25
  Style/SymbolArray:
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.3.0
4
+ version: 0.4.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-04 00:00:00.000000000 Z
11
+ date: 2018-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.49'
19
+ version: '0.53'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.49'
26
+ version: '0.53'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: thor
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -94,7 +94,7 @@ files:
94
94
  - CHANGELOG.md
95
95
  - CODE_OF_CONDUCT.md
96
96
  - Gemfile
97
- - LICENSE.txt
97
+ - LICENSE
98
98
  - README.md
99
99
  - Rakefile
100
100
  - bin/console
@@ -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.14
130
+ rubygems_version: 2.7.6
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: Style guide default configuration for The Gnar Company