standard 1.7.2 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +12 -12
- data/config/base.yml +5 -3
- data/config/ruby-2.7.yml +2 -2
- data/config/ruby-3.0.yml +3 -3
- data/docs/NEW_RUBIES.md +13 -0
- data/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +2 -0
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +2 -2
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d09eecefc043efa10c64a0c5a1829eb4f52697a37aa398c696dab82957d4d2e0
|
4
|
+
data.tar.gz: 7456d21b200f8a3f1c4c4bc200b94ab1680690b80251b5b51b334cefffc791e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edc84b1e1df6318aeed522d18250870628b5c135f4cc72bc97f75dedbb76909549c1efa9210859f795b48a8b95ee27bb0ee54c154a3cbe2b47eb715ab6b85934
|
7
|
+
data.tar.gz: 16ed12b864fc7960f5c379a001bce160bb705e9910a06ae1bab050a2c8f0cf4d407dcd3f5f96608b86f89fbe13bf7ae84c44c4e8fe5e777298884841da215a1f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.9.0
|
4
|
+
|
5
|
+
* Rule change to `Layout/CaseIndentation` to have the `when` and `in`s inside a case statement aligned with the `end` of the case. The `end` will be aligned with a variable instead of the `case` keyword if applicable.
|
6
|
+
|
7
|
+
## 1.8.0
|
8
|
+
|
9
|
+
* Update rubocop from 1.25.1 to [1.26.0](https://github.com/rubocop/rubocop/tag/v1.26.0)
|
10
|
+
|
11
|
+
## 1.7.3
|
12
|
+
|
13
|
+
* Update rubocop-performance from 1.13.2 to [1.13.3](https://github.com/rubocop/rubocop-performance/tag/v1.13.3)
|
14
|
+
|
3
15
|
## 1.7.2
|
4
16
|
|
5
17
|
* Removes Style/RedundantBegin from Ruby versions <= 2.4
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
standard (1.
|
5
|
-
rubocop (= 1.
|
6
|
-
rubocop-performance (= 1.13.
|
4
|
+
standard (1.9.0)
|
5
|
+
rubocop (= 1.26.0)
|
6
|
+
rubocop-performance (= 1.13.3)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -14,28 +14,28 @@ GEM
|
|
14
14
|
gimme (0.5.0)
|
15
15
|
method_source (1.0.0)
|
16
16
|
minitest (5.15.0)
|
17
|
-
parallel (1.
|
18
|
-
parser (3.1.
|
17
|
+
parallel (1.22.0)
|
18
|
+
parser (3.1.1.0)
|
19
19
|
ast (~> 2.4.1)
|
20
20
|
pry (0.14.1)
|
21
21
|
coderay (~> 1.1)
|
22
22
|
method_source (~> 1.0)
|
23
23
|
rainbow (3.1.1)
|
24
24
|
rake (13.0.6)
|
25
|
-
regexp_parser (2.2.
|
25
|
+
regexp_parser (2.2.1)
|
26
26
|
rexml (3.2.5)
|
27
|
-
rubocop (1.
|
27
|
+
rubocop (1.26.0)
|
28
28
|
parallel (~> 1.10)
|
29
29
|
parser (>= 3.1.0.0)
|
30
30
|
rainbow (>= 2.2.2, < 4.0)
|
31
31
|
regexp_parser (>= 1.8, < 3.0)
|
32
32
|
rexml
|
33
|
-
rubocop-ast (>= 1.
|
33
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
34
34
|
ruby-progressbar (~> 1.7)
|
35
35
|
unicode-display_width (>= 1.4.0, < 3.0)
|
36
|
-
rubocop-ast (1.
|
37
|
-
parser (>= 3.
|
38
|
-
rubocop-performance (1.13.
|
36
|
+
rubocop-ast (1.16.0)
|
37
|
+
parser (>= 3.1.1.0)
|
38
|
+
rubocop-performance (1.13.3)
|
39
39
|
rubocop (>= 1.7.0, < 2.0)
|
40
40
|
rubocop-ast (>= 0.4.0)
|
41
41
|
ruby-progressbar (1.11.0)
|
@@ -44,7 +44,7 @@ GEM
|
|
44
44
|
simplecov-html (~> 0.11)
|
45
45
|
simplecov_json_formatter (~> 0.1)
|
46
46
|
simplecov-html (0.12.3)
|
47
|
-
simplecov_json_formatter (0.1.
|
47
|
+
simplecov_json_formatter (0.1.4)
|
48
48
|
unicode-display_width (2.1.0)
|
49
49
|
|
50
50
|
PLATFORMS
|
data/config/base.yml
CHANGED
@@ -83,9 +83,8 @@ Layout/BlockEndNewline:
|
|
83
83
|
Enabled: true
|
84
84
|
|
85
85
|
Layout/CaseIndentation:
|
86
|
-
|
87
|
-
|
88
|
-
Enabled: false
|
86
|
+
Enabled: true
|
87
|
+
EnforcedStyle: end
|
89
88
|
|
90
89
|
Layout/ClassStructure:
|
91
90
|
Enabled: false
|
@@ -1446,6 +1445,9 @@ Style/NegatedUnless:
|
|
1446
1445
|
Style/NegatedWhile:
|
1447
1446
|
Enabled: true
|
1448
1447
|
|
1448
|
+
Style/NestedFileDirname:
|
1449
|
+
Enabled: true
|
1450
|
+
|
1449
1451
|
Style/NestedModifier:
|
1450
1452
|
Enabled: true
|
1451
1453
|
|
data/config/ruby-2.7.yml
CHANGED
data/config/ruby-3.0.yml
CHANGED
data/docs/NEW_RUBIES.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Handling New Ruby Versions
|
2
|
+
|
3
|
+
When a new Ruby version comes out, you shouldn't have to make any immediate changes to StandardRb. The default configuration is the `base.yml` configuration and should continue to work correctly.
|
4
|
+
|
5
|
+
Often, Rubocop will add new rules to encourage usage of new language features in new Ruby versions. When that happens:
|
6
|
+
|
7
|
+
1. Add the rule to the base.yml file and disable it.
|
8
|
+
1. Assess the new rule and see if it should be added to StandardRb. If not, you're done. If so, enable in `base.yml` and read on.
|
9
|
+
1. Add a new config file for the penultimate minor version of Ruby, so for example, if the new Ruby version is `3.1` then the new config file would be for `3.0`.
|
10
|
+
1. In the new config file, make sure it inherits from `base.yml` and disable the new rule.
|
11
|
+
1. In the previous latest config file, make sure it inherits from your new config file.
|
12
|
+
|
13
|
+
And that should add new rules to StandardRb safely and gracefully.
|
data/lib/standard/version.rb
CHANGED
data/standard.gemspec
CHANGED
@@ -19,6 +19,6 @@ 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", "1.
|
23
|
-
spec.add_dependency "rubocop-performance", "1.13.
|
22
|
+
spec.add_dependency "rubocop", "1.26.0"
|
23
|
+
spec.add_dependency "rubocop-performance", "1.13.3"
|
24
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Searls
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.26.0
|
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: 1.
|
26
|
+
version: 1.26.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.13.
|
33
|
+
version: 1.13.3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.13.
|
40
|
+
version: 1.13.3
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- searls@gmail.com
|
@@ -69,6 +69,7 @@ files:
|
|
69
69
|
- config/ruby-2.6.yml
|
70
70
|
- config/ruby-2.7.yml
|
71
71
|
- config/ruby-3.0.yml
|
72
|
+
- docs/NEW_RUBIES.md
|
72
73
|
- docs/RELEASE.md
|
73
74
|
- exe/standardrb
|
74
75
|
- lib/standard.rb
|
@@ -113,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
114
|
- !ruby/object:Gem::Version
|
114
115
|
version: '0'
|
115
116
|
requirements: []
|
116
|
-
rubygems_version: 3.2.
|
117
|
+
rubygems_version: 3.2.15
|
117
118
|
signing_key:
|
118
119
|
specification_version: 4
|
119
120
|
summary: Ruby Style Guide, with linter & automatic code fixer
|