gnar-style 0.3.0 → 0.4.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 +5 -5
- data/CHANGELOG.md +11 -4
- data/CODE_OF_CONDUCT.md +1 -1
- data/{LICENSE.txt → LICENSE} +5 -5
- data/README.md +9 -0
- data/gnar-style.gemspec +2 -2
- data/lib/gnar/style/version.rb +1 -1
- data/rubocop/rubocop.yml +4 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f053a6d72e08d044f8a09cce72ab2185f9b314985867143cc4f68108b661e768
|
|
4
|
+
data.tar.gz: 5a4a71a029afdb7472bd9f36dad28dc8bac9b97f5d8c7741548f39e067dcacae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cc8d5cde9535877ee3113e7572ca61c1a9cd453e9c6656e5b6e5fc972ed1bea096b154595b70599bc955ca5ee2c9ffbbbfb1339d5847db85321cac7294a9598
|
|
7
|
+
data.tar.gz: 93b4bdf1d3325ecd9bdebf86121d4d23d3d3cc5f33538beb754a9f8db910b22623805e11a7bc8ed6d7f2648f7ebcf79e84cd4226294d1bc53aa53c21b6d7416f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
## Current release (in development)
|
|
2
2
|
|
|
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
|
-
|
|
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
|
-
|
|
17
|
+
|
|
18
|
+
[Kevin Murphy](https://github.com/kevin-j-m)
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -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
|
|
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.
|
data/{LICENSE.txt → LICENSE}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
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
|
-
|
|
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
|
-
|
|
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
|
+

|
|
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/).
|
data/gnar-style.gemspec
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lib = File.expand_path("
|
|
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.
|
|
22
|
+
spec.add_dependency "rubocop", "~> 0.53"
|
|
23
23
|
spec.add_dependency "thor"
|
|
24
24
|
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 1.14"
|
data/lib/gnar/style/version.rb
CHANGED
data/rubocop/rubocop.yml
CHANGED
|
@@ -16,7 +16,10 @@ Style/Documentation:
|
|
|
16
16
|
Style/TrailingCommaInArguments:
|
|
17
17
|
EnforcedStyleForMultiline: comma
|
|
18
18
|
|
|
19
|
-
Style/
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|
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
|