gnar-style 0.10.0 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +13 -11
- data/RELEASE_PROCESS.md +1 -0
- data/gnar-style.gemspec +2 -2
- data/lib/gnar/style/version.rb +1 -1
- data/rubocop/rubocop.yml +13 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 729299072eff335fa727b843b9e6e04d76f974cacdbf08f4f5107a9bc98bf66a
|
4
|
+
data.tar.gz: 65d1a151698694ff6c4bb5c327c91b56a91b48b47b8112bba88f2f36f2455749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b0a3d9b9b4ef0bf8c4b7926c96b4bb8b5a895e66d49404701bf748c85608e1690b32e25931571bbc434fc77e4a1d88dcf803badf9560c5e3190cae561cee8d7
|
7
|
+
data.tar.gz: 809f7191017d586ad1c714ec90b91df4383041e4b041e6d9e6b98c18d233b41db8f900ec1fe35028ef6779f43bb1206a1f85f54aea8f96bf9905f67932d319a0
|
data/.circleci/config.yml
CHANGED
@@ -19,10 +19,15 @@ jobs:
|
|
19
19
|
# fallback to using the latest cache if no exact match is found
|
20
20
|
- gnar-style-
|
21
21
|
|
22
|
+
# update bundler
|
23
|
+
- run:
|
24
|
+
name: Update bundler
|
25
|
+
command: gem uninstall bundler && gem install bundler
|
26
|
+
|
22
27
|
# Bundle install dependencies
|
23
28
|
- run:
|
24
29
|
name: install dependencies
|
25
|
-
command: bundle
|
30
|
+
command: bundle config set path 'vendor/bundle' && bundle install
|
26
31
|
|
27
32
|
# Store bundle cache
|
28
33
|
- save_cache:
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## Current release (in development)
|
2
2
|
|
3
|
+
## 0.11.0 - 2020-04-16
|
4
|
+
|
5
|
+
* Enable pending cops from rubocop version 0.80. [#49](https://github.com/TheGnarCo/gnar-style/pull/49)
|
6
|
+
|
7
|
+
[Dan Frenette](https://github.com/danfrenette)
|
8
|
+
|
3
9
|
## 0.10.0 - 2020-01-06
|
4
10
|
|
5
11
|
* Rename Rename line length cop. [#45](https://github.com/TheGnarCo/gnar-style/pull/45)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gnar-style (0.
|
4
|
+
gnar-style (0.11.0)
|
5
5
|
rubocop (~> 0.78)
|
6
6
|
rubocop-performance
|
7
7
|
rubocop-rails (~> 2.2.0)
|
@@ -14,11 +14,12 @@ GEM
|
|
14
14
|
diff-lcs (1.3)
|
15
15
|
jaro_winkler (1.5.4)
|
16
16
|
parallel (1.19.1)
|
17
|
-
parser (2.7.
|
17
|
+
parser (2.7.1.1)
|
18
18
|
ast (~> 2.4.0)
|
19
|
-
rack (2.
|
19
|
+
rack (2.2.2)
|
20
20
|
rainbow (3.0.0)
|
21
|
-
rake (
|
21
|
+
rake (13.0.1)
|
22
|
+
rexml (3.2.4)
|
22
23
|
rspec (3.9.0)
|
23
24
|
rspec-core (~> 3.9.0)
|
24
25
|
rspec-expectations (~> 3.9.0)
|
@@ -28,17 +29,18 @@ GEM
|
|
28
29
|
rspec-expectations (3.9.0)
|
29
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
30
31
|
rspec-support (~> 3.9.0)
|
31
|
-
rspec-mocks (3.9.
|
32
|
+
rspec-mocks (3.9.1)
|
32
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
34
|
rspec-support (~> 3.9.0)
|
34
35
|
rspec-support (3.9.2)
|
35
|
-
rubocop (0.
|
36
|
+
rubocop (0.82.0)
|
36
37
|
jaro_winkler (~> 1.5.1)
|
37
38
|
parallel (~> 1.10)
|
38
39
|
parser (>= 2.7.0.1)
|
39
40
|
rainbow (>= 2.2.2, < 4.0)
|
41
|
+
rexml
|
40
42
|
ruby-progressbar (~> 1.7)
|
41
|
-
unicode-display_width (>= 1.4.0, <
|
43
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
42
44
|
rubocop-performance (1.5.2)
|
43
45
|
rubocop (>= 0.71.0)
|
44
46
|
rubocop-rails (2.2.1)
|
@@ -46,16 +48,16 @@ GEM
|
|
46
48
|
rubocop (>= 0.72.0)
|
47
49
|
ruby-progressbar (1.10.1)
|
48
50
|
thor (1.0.1)
|
49
|
-
unicode-display_width (1.
|
51
|
+
unicode-display_width (1.7.0)
|
50
52
|
|
51
53
|
PLATFORMS
|
52
54
|
ruby
|
53
55
|
|
54
56
|
DEPENDENCIES
|
55
|
-
bundler (~> 1
|
57
|
+
bundler (~> 2.1)
|
56
58
|
gnar-style!
|
57
|
-
rake (~>
|
59
|
+
rake (~> 13.0)
|
58
60
|
rspec (~> 3.0)
|
59
61
|
|
60
62
|
BUNDLED WITH
|
61
|
-
1.
|
63
|
+
2.1.2
|
data/RELEASE_PROCESS.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
* Checkout master: `git checkout master`.
|
2
2
|
* Get latest: `git pull --rebase origin master`
|
3
3
|
* Bump version number in `lib/gnar-style/version.rb`.
|
4
|
+
* Run `bundle install` to ensure the version bump takes in the `Gemfile.lock` file.
|
4
5
|
* Update the [CHANGELOG](CHANGELOG.md), moving the current release work to under the version number.
|
5
6
|
* Create a commit, including the version number in the commit message: `git add
|
6
7
|
--all && git commit -m "Version x.y.z"`.
|
data/gnar-style.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_dependency "rubocop-rails", "~> 2.2.0"
|
25
25
|
spec.add_dependency "thor"
|
26
26
|
|
27
|
-
spec.add_development_dependency "bundler", "~> 1
|
28
|
-
spec.add_development_dependency "rake", "~>
|
27
|
+
spec.add_development_dependency "bundler", "~> 2.1"
|
28
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
29
29
|
spec.add_development_dependency "rspec", "~> 3.0"
|
30
30
|
end
|
data/lib/gnar/style/version.rb
CHANGED
data/rubocop/rubocop.yml
CHANGED
@@ -62,3 +62,16 @@ Style/TrailingCommaInArrayLiteral:
|
|
62
62
|
|
63
63
|
Style/TrailingCommaInHashLiteral:
|
64
64
|
EnforcedStyleForMultiline: comma
|
65
|
+
|
66
|
+
# ---------------------------------------------------
|
67
|
+
# PENDING COPS: REMOVE AFTER INCORPORATED INTO RUBOCOP
|
68
|
+
# ---------------------------------------------------
|
69
|
+
|
70
|
+
Style/HashEachMethods:
|
71
|
+
Enabled: true
|
72
|
+
|
73
|
+
Style/HashTransformKeys:
|
74
|
+
Enabled: true
|
75
|
+
|
76
|
+
Style/HashTransformValues:
|
77
|
+
Enabled: true
|
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.11.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: 2020-
|
11
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -72,28 +72,28 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '1
|
75
|
+
version: '2.1'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '1
|
82
|
+
version: '2.1'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rake
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
89
|
+
version: '13.0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
96
|
+
version: '13.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: rspec
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|