standard 1.29.0 → 1.30.1
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 +4 -4
- data/CHANGELOG.md +16 -1
- data/Gemfile.lock +8 -6
- data/docs/ARCHITECTURE.md +3 -1
- data/lib/standard/version.rb +1 -1
- data/lib/standard.rb +0 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c00678665803420723c8674b59d3c618e2164a9e469946ccccabed971f56149
|
|
4
|
+
data.tar.gz: 738c3f9610cb74a41aac35aec29348e6282b6f8018ed83dd80f831e723081e39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69eb144ed7790c19699edaf481ab4caf3b3805039ef94b180d711846767a352cdb87cdc71daeafd5240a78b6cda85573ee248605257d05641046d3a22165667a
|
|
7
|
+
data.tar.gz: 7ea6b6cd83b1768181ab075fa7f408281da76b22dff644c2ff1e7425543a8606a2a0f6ee81b59f69e46bcab53d0c176caa2d7034bc6dc16f57bb893797ffaa38
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.30.1
|
|
4
|
+
|
|
5
|
+
* Just kidding about about `Standard::PluginSupport`. Moving it to `LintRoller::Support`
|
|
6
|
+
to avoid circular dependencies between Standard Ruby and its plugins
|
|
7
|
+
|
|
8
|
+
## 1.30.0
|
|
9
|
+
|
|
10
|
+
* Add `Standard::PluginSupport` module of classes designed to make it a little
|
|
11
|
+
easier to author plugins. `MergesUpstreamMetadata#merge` will allow a minimal
|
|
12
|
+
YAML config (say, `standard-sorbet`'s, which only contains `Enabled` values for
|
|
13
|
+
each rule) to merge in any other defaults from a source YAML (e.g.
|
|
14
|
+
`rubocop-sorbet`'s which includes `Description`, `VersionAdded`, and so on).
|
|
15
|
+
This way that metadata is neither absent at runtime nor duplicated in a standard
|
|
16
|
+
plugin that mirrors a rubocop extension
|
|
17
|
+
|
|
3
18
|
## 1.29.0
|
|
4
19
|
|
|
5
|
-
* Updates standard-performance to [1.1.0](https://github.com/standardrb/standard-
|
|
20
|
+
* Updates standard-performance to [1.1.0](https://github.com/standardrb/standard-performance/releases/tag/v1.1.0)
|
|
6
21
|
* Updates rubocop to [1.52.0](https://github.com/rubocop/rubocop/releases/tag/v1.52.0)
|
|
7
22
|
* Enables Style/ExactRegexpMatch, Style/RedundantArrayConstructor, Style/RedundantFilterChain, Style/RedundantRegexpConstructor
|
|
8
23
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
standard (1.
|
|
4
|
+
standard (1.30.1)
|
|
5
5
|
language_server-protocol (~> 3.17.0.2)
|
|
6
6
|
lint_roller (~> 1.0)
|
|
7
7
|
rubocop (~> 1.52.0)
|
|
@@ -23,16 +23,18 @@ GEM
|
|
|
23
23
|
method_source (1.0.0)
|
|
24
24
|
minitest (5.18.0)
|
|
25
25
|
parallel (1.23.0)
|
|
26
|
-
parser (3.2.2.
|
|
26
|
+
parser (3.2.2.3)
|
|
27
27
|
ast (~> 2.4.1)
|
|
28
|
+
racc
|
|
29
|
+
racc (1.7.1)
|
|
28
30
|
rainbow (3.1.1)
|
|
29
31
|
rake (13.0.6)
|
|
30
|
-
regexp_parser (2.8.
|
|
32
|
+
regexp_parser (2.8.1)
|
|
31
33
|
rexml (3.2.5)
|
|
32
|
-
rubocop (1.52.
|
|
34
|
+
rubocop (1.52.1)
|
|
33
35
|
json (~> 2.3)
|
|
34
36
|
parallel (~> 1.10)
|
|
35
|
-
parser (>= 3.2.
|
|
37
|
+
parser (>= 3.2.2.3)
|
|
36
38
|
rainbow (>= 2.2.2, < 4.0)
|
|
37
39
|
regexp_parser (>= 1.8, < 3.0)
|
|
38
40
|
rexml (>= 3.2.5, < 4.0)
|
|
@@ -51,7 +53,7 @@ GEM
|
|
|
51
53
|
simplecov_json_formatter (~> 0.1)
|
|
52
54
|
simplecov-html (0.12.3)
|
|
53
55
|
simplecov_json_formatter (0.1.4)
|
|
54
|
-
standard-custom (1.0.
|
|
56
|
+
standard-custom (1.0.1)
|
|
55
57
|
lint_roller (~> 1.0)
|
|
56
58
|
standard-performance (1.1.0)
|
|
57
59
|
lint_roller (~> 1.0)
|
data/docs/ARCHITECTURE.md
CHANGED
|
@@ -8,7 +8,9 @@ buried.
|
|
|
8
8
|
Starting with version 1.28.0, Standard Ruby introduced plugin support and
|
|
9
9
|
refactored how it loads its own rules from one large YAML file into several
|
|
10
10
|
plugins. As a result, what was a single `standard` gem is now spread across 3
|
|
11
|
-
gems.
|
|
11
|
+
gems.
|
|
12
|
+
|
|
13
|
+
Here's how it's all organized:
|
|
12
14
|
|
|
13
15
|
* [standard](https://github.com/standardrb/standard) - The main gem. The one
|
|
14
16
|
people install and think of. Because `standard` has a hard dependency on `rubocop`,
|
data/lib/standard/version.rb
CHANGED
data/lib/standard.rb
CHANGED
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.30.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Searls
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 3.17.0.2
|
|
83
|
-
description:
|
|
83
|
+
description:
|
|
84
84
|
email:
|
|
85
85
|
- searls@gmail.com
|
|
86
86
|
executables:
|
|
@@ -167,7 +167,7 @@ metadata:
|
|
|
167
167
|
source_code_uri: https://github.com/standardrb/standard
|
|
168
168
|
changelog_uri: https://github.com/standardrb/standard/blob/main/CHANGELOG.md
|
|
169
169
|
rubygems_mfa_required: 'true'
|
|
170
|
-
post_install_message:
|
|
170
|
+
post_install_message:
|
|
171
171
|
rdoc_options: []
|
|
172
172
|
require_paths:
|
|
173
173
|
- lib
|
|
@@ -182,8 +182,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
182
182
|
- !ruby/object:Gem::Version
|
|
183
183
|
version: '0'
|
|
184
184
|
requirements: []
|
|
185
|
-
rubygems_version: 3.
|
|
186
|
-
signing_key:
|
|
185
|
+
rubygems_version: 3.4.14
|
|
186
|
+
signing_key:
|
|
187
187
|
specification_version: 4
|
|
188
188
|
summary: Ruby Style Guide, with linter & automatic code fixer
|
|
189
189
|
test_files: []
|