standard 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93197f658f1dd3576f944e866175bef36842cf969496c160ea4e4deac911ce05
4
- data.tar.gz: a8d405717903f251c6f27731aef338f4b7831698d7e2aa52b1b3fd56b7e0c8fc
3
+ metadata.gz: 89f8024063be335d11ff642750e48437a667a57e79c4dde8090b2dabd0fb378a
4
+ data.tar.gz: 9a49023a12ebc840f8174f5246bd6cb86aefef1a325cb856f6698162ef38955d
5
5
  SHA512:
6
- metadata.gz: a5929c4b9f4d4184a91a0e994d4f25fbabf00e1483adacdd7be29c6a711c1618bf4231ab4dbaf9a65dd837ef3b8d3da7fe815918c001bb6e58740a3fa434b2a9
7
- data.tar.gz: ded2c3e5d2e20b9da5212995dea0a723e494618fd0a52e2ca6eb5d00a63d80f7d226b1162acd5a7334042eb5cda224c57168ae68786770bd57680df101b980ee
6
+ metadata.gz: dddcf6a76644313e90ac9f827af5ac882d59ce4996421d426f237f64600a0f187924ffbaebac714589fd1dc46c45cc62df96c3fce769161f879ef0a809a4d0c1
7
+ data.tar.gz: 16e6f725d58bd1e234d57e1139394529f52416b674e21dfe8477c0a02d31bb9c1f052fb9a03dbccf013eed1e4153ea93200c808b124c298950f0286308982f6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.15.0
4
+
5
+ * Update rubocop from 1.32.0 to [1.33.0](https://github.com/rubocop/rubocop/releases/tag/v1.33.0)
6
+
3
7
  ## 1.14.0
4
8
 
5
9
  * Update rubocop from 1.31.2 to [1.32.0](https://github.com/rubocop/rubocop/releases/tag/v1.32.0)
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.14.0)
5
- rubocop (= 1.32.0)
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.0)
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.32.0)
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.19.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 three ways:
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
@@ -1424,7 +1424,7 @@ Style/MethodCallWithArgsParentheses:
1424
1424
 
1425
1425
  Style/MethodCallWithoutArgsParentheses:
1426
1426
  Enabled: true
1427
- IgnoredMethods: []
1427
+ AllowedMethods: []
1428
1428
 
1429
1429
  Style/MethodCalledOnDoEndBlock:
1430
1430
  Enabled: false
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new('1.14.0')
2
+ VERSION = Gem::Version.new('1.15.0')
3
3
  end
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.32.0"
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.14.0
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-07-25 00:00:00.000000000 Z
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.32.0
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.32.0
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.3.12
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