gnar-style 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +61 -0
- data/gnar-style.gemspec +1 -1
- data/lib/gnar/style/version.rb +1 -1
- data/rubocop/rubocop.yml +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66e76d84c19cae8d302aa631d2da4ad5316b26ef7ffc4a64df5eeb765c407c17
|
4
|
+
data.tar.gz: c3dbfee865eae83b2e37f06e8e89de726f2d2c61902e5ab71f0dd341e984df20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8e80af0d3b37d6507659664e564d1688fcb69320eeb367524f91ce329e4d455540df6ec0e6e56dfa101f962d3d72cabfcbad2a1857ccdea3987e7fde28657ba
|
7
|
+
data.tar.gz: 59229241ccd56c4e10327a88476cd6dac85d73b9053ec4c0780ddf17a2b617ed642d897ec7c44e0658868c321f67d7a9e05787725a8949a6ac02dcaddd8e62f3
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
## Current release (in development)
|
2
2
|
|
3
|
+
## 0.10.0 - 2020-01-06
|
4
|
+
|
5
|
+
* Rename Rename line length cop. [#45](https://github.com/TheGnarCo/gnar-style/pull/45)
|
6
|
+
|
7
|
+
[Zach Fletcher](https://github.com/zfletch)
|
8
|
+
|
9
|
+
* Check in Gemfile.lock. [#45](https://github.com/TheGnarCo/gnar-style/pull/45)
|
10
|
+
|
11
|
+
[Zach Fletcher](https://github.com/zfletch)
|
12
|
+
|
3
13
|
## 0.9.0 - 2019-11-27
|
4
14
|
|
5
15
|
* Rename AlignArguments, AlignParameters, IndentFirstArrayElement cops. [#42](https://github.com/TheGnarCo/gnar-style/pull/42)
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
gnar-style (0.10.0)
|
5
|
+
rubocop (~> 0.78)
|
6
|
+
rubocop-performance
|
7
|
+
rubocop-rails (~> 2.2.0)
|
8
|
+
thor
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
ast (2.4.0)
|
14
|
+
diff-lcs (1.3)
|
15
|
+
jaro_winkler (1.5.4)
|
16
|
+
parallel (1.19.1)
|
17
|
+
parser (2.7.0.1)
|
18
|
+
ast (~> 2.4.0)
|
19
|
+
rack (2.0.8)
|
20
|
+
rainbow (3.0.0)
|
21
|
+
rake (10.5.0)
|
22
|
+
rspec (3.9.0)
|
23
|
+
rspec-core (~> 3.9.0)
|
24
|
+
rspec-expectations (~> 3.9.0)
|
25
|
+
rspec-mocks (~> 3.9.0)
|
26
|
+
rspec-core (3.9.1)
|
27
|
+
rspec-support (~> 3.9.1)
|
28
|
+
rspec-expectations (3.9.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.9.0)
|
31
|
+
rspec-mocks (3.9.0)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.9.0)
|
34
|
+
rspec-support (3.9.2)
|
35
|
+
rubocop (0.79.0)
|
36
|
+
jaro_winkler (~> 1.5.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 2.7.0.1)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
ruby-progressbar (~> 1.7)
|
41
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
42
|
+
rubocop-performance (1.5.2)
|
43
|
+
rubocop (>= 0.71.0)
|
44
|
+
rubocop-rails (2.2.1)
|
45
|
+
rack (>= 1.1)
|
46
|
+
rubocop (>= 0.72.0)
|
47
|
+
ruby-progressbar (1.10.1)
|
48
|
+
thor (1.0.1)
|
49
|
+
unicode-display_width (1.6.0)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
ruby
|
53
|
+
|
54
|
+
DEPENDENCIES
|
55
|
+
bundler (~> 1.14)
|
56
|
+
gnar-style!
|
57
|
+
rake (~> 10.0)
|
58
|
+
rspec (~> 3.0)
|
59
|
+
|
60
|
+
BUNDLED WITH
|
61
|
+
1.17.3
|
data/gnar-style.gemspec
CHANGED
@@ -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.78"
|
23
23
|
spec.add_dependency "rubocop-performance"
|
24
24
|
spec.add_dependency "rubocop-rails", "~> 2.2.0"
|
25
25
|
spec.add_dependency "thor"
|
data/lib/gnar/style/version.rb
CHANGED
data/rubocop/rubocop.yml
CHANGED
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.10.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: 2020-01-06 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.78'
|
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.78'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -123,6 +123,7 @@ files:
|
|
123
123
|
- CHANGELOG.md
|
124
124
|
- CODE_OF_CONDUCT.md
|
125
125
|
- Gemfile
|
126
|
+
- Gemfile.lock
|
126
127
|
- LICENSE
|
127
128
|
- README.md
|
128
129
|
- RELEASE_PROCESS.md
|
@@ -156,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
157
|
- !ruby/object:Gem::Version
|
157
158
|
version: '0'
|
158
159
|
requirements: []
|
159
|
-
rubygems_version: 3.
|
160
|
+
rubygems_version: 3.1.2
|
160
161
|
signing_key:
|
161
162
|
specification_version: 4
|
162
163
|
summary: Style guide default configuration for The Gnar Company
|