standard 1.14.0 → 1.15.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +5 -5
- data/README.md +5 -1
- data/config/base.yml +1 -1
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89f8024063be335d11ff642750e48437a667a57e79c4dde8090b2dabd0fb378a
|
4
|
+
data.tar.gz: 9a49023a12ebc840f8174f5246bd6cb86aefef1a325cb856f6698162ef38955d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dddcf6a76644313e90ac9f827af5ac882d59ce4996421d426f237f64600a0f187924ffbaebac714589fd1dc46c45cc62df96c3fce769161f879ef0a809a4d0c1
|
7
|
+
data.tar.gz: 16e6f725d58bd1e234d57e1139394529f52416b674e21dfe8477c0a02d31bb9c1f052fb9a03dbccf013eed1e4153ea93200c808b124c298950f0286308982f6b
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
standard (1.
|
5
|
-
rubocop (= 1.
|
4
|
+
standard (1.15.0)
|
5
|
+
rubocop (= 1.33.0)
|
6
6
|
rubocop-performance (= 1.14.3)
|
7
7
|
|
8
8
|
GEM
|
@@ -16,7 +16,7 @@ GEM
|
|
16
16
|
method_source (1.0.0)
|
17
17
|
minitest (5.16.2)
|
18
18
|
parallel (1.22.1)
|
19
|
-
parser (3.1.2.
|
19
|
+
parser (3.1.2.1)
|
20
20
|
ast (~> 2.4.1)
|
21
21
|
pry (0.14.1)
|
22
22
|
coderay (~> 1.1)
|
@@ -25,7 +25,7 @@ GEM
|
|
25
25
|
rake (13.0.6)
|
26
26
|
regexp_parser (2.5.0)
|
27
27
|
rexml (3.2.5)
|
28
|
-
rubocop (1.
|
28
|
+
rubocop (1.33.0)
|
29
29
|
json (~> 2.3)
|
30
30
|
parallel (~> 1.10)
|
31
31
|
parser (>= 3.1.0.0)
|
@@ -35,7 +35,7 @@ GEM
|
|
35
35
|
rubocop-ast (>= 1.19.1, < 2.0)
|
36
36
|
ruby-progressbar (~> 1.7)
|
37
37
|
unicode-display_width (>= 1.4.0, < 3.0)
|
38
|
-
rubocop-ast (1.
|
38
|
+
rubocop-ast (1.21.0)
|
39
39
|
parser (>= 3.1.1.0)
|
40
40
|
rubocop-performance (1.14.3)
|
41
41
|
rubocop (>= 1.7.0, < 2.0)
|
data/README.md
CHANGED
@@ -182,7 +182,7 @@ The beauty of Ruby Standard Style is that it's simple. No one wants to
|
|
182
182
|
maintain multiple hundred-line style configuration files for every module/project
|
183
183
|
they work on. Enough of this madness!
|
184
184
|
|
185
|
-
This gem saves you (and others!) time in
|
185
|
+
This gem saves you (and others!) time in four ways:
|
186
186
|
|
187
187
|
- **No configuration.** The easiest way to enforce consistent style in your
|
188
188
|
project. Just drop it in.
|
@@ -190,6 +190,9 @@ This gem saves you (and others!) time in three ways:
|
|
190
190
|
messy or inconsistent code.
|
191
191
|
- **Catch style issues & programmer errors early.** Save precious code review
|
192
192
|
time by eliminating back-and-forth between reviewer & contributor.
|
193
|
+
- **Deliberate pace.** We strive to take the hassle of upgrading Rubocop out of each
|
194
|
+
individual team's hands and shoulder it ourselves. We enable about ~20% of new
|
195
|
+
cops and generally choose conservative configurations for them.
|
193
196
|
|
194
197
|
Adopting Standard style means ranking the importance of code clarity and
|
195
198
|
community conventions higher than personal style. This might not make sense for
|
@@ -223,6 +226,7 @@ if you've used StandardJS.)
|
|
223
226
|
* [Brave Software](https://github.com/brave-intl/publishers)
|
224
227
|
* [Collective Idea](https://collectiveidea.com/)
|
225
228
|
* [Culture Foundry](https://www.culturefoundry.com/)
|
229
|
+
* [Elevate Labs](https://elevatelabs.com)
|
226
230
|
* [Envoy](https://www.envoy.com)
|
227
231
|
* [Evil Martians](https://evilmartians.com)
|
228
232
|
* [Hashrocket](https://hashrocket.com)
|
data/config/base.yml
CHANGED
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.
|
22
|
+
spec.add_dependency "rubocop", "1.33.0"
|
23
23
|
spec.add_dependency "rubocop-performance", "1.14.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.15.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-08-09 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: 1.
|
19
|
+
version: 1.33.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.33.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
- !ruby/object:Gem::Version
|
115
115
|
version: '0'
|
116
116
|
requirements: []
|
117
|
-
rubygems_version: 3.
|
117
|
+
rubygems_version: 3.1.6
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: Ruby Style Guide, with linter & automatic code fixer
|