standard 1.22.1 → 1.23.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: f79913870ce4e07e94a76c49bfdb2bdf671b72cfe28b9c8d23d3dcfe723b9093
4
- data.tar.gz: 1fbbe5ecbb1b9b093997cf96f4102c089305ef35f5bf0523406924120cb5906e
3
+ metadata.gz: ec668f31e8de1959e062f5dbb2cf5e35271df24c5852658594c6ad3e9b36369a
4
+ data.tar.gz: 458b4c01b10be7f37ffa140575d3ccf90d8be56778a4b4752961c9cb0b6e8940
5
5
  SHA512:
6
- metadata.gz: 19e734ff2ab15102430f2cd927ef9beed5c403b6e7b30804bb8baf23d83978ffdfeec3324482d957daae0bd7efbbc7ebcd9bce9bc9f9a84e81c85839c2f30eb0
7
- data.tar.gz: a3135a540a166b292633aa3e2adb11854f09b67fa07dccbc5199de73efa5d289b4612b10917481791563105bdc815a89e7912e054a737428fb55c25c32cfe0bb
6
+ metadata.gz: 3da9df5fa960b922f29da77dfa2f8379180726bed9d0021916a08dae0d7c082056985c1c22ff7c855db050d7006d0b02370b58b2adeb9c5591f7a3fb42122ed9
7
+ data.tar.gz: 549557b4f5bf4ad6a9e7d63b4414ddac999bd0088992e28580158b68a43100677bc066ebebbe29a382a9efb431bbb1c32bca60e5c333ac443730229763b42f05
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.23.0
4
+
5
+ * Update rubocop from 1.42.0 to [1.44.1](https://github.com/rubocop/rubocop/releases/tag/v1.44.1)
6
+
3
7
  ## 1.22.1
4
8
 
5
9
  * Improve the behavior of `extend_config` to more accurately reflect how Rubocop
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.22.1)
4
+ standard (1.23.0)
5
5
  language_server-protocol (~> 3.17.0.2)
6
- rubocop (= 1.42.0)
6
+ rubocop (= 1.44.1)
7
7
  rubocop-performance (= 1.15.2)
8
8
 
9
9
  GEM
@@ -14,29 +14,29 @@ GEM
14
14
  docile (1.4.0)
15
15
  gimme (0.5.0)
16
16
  json (2.6.3)
17
- language_server-protocol (3.17.0.2)
17
+ language_server-protocol (3.17.0.3)
18
18
  method_source (1.0.0)
19
19
  minitest (5.17.0)
20
20
  parallel (1.22.1)
21
21
  parser (3.2.0.0)
22
22
  ast (~> 2.4.1)
23
- pry (0.14.1)
23
+ pry (0.14.2)
24
24
  coderay (~> 1.1)
25
25
  method_source (~> 1.0)
26
26
  rainbow (3.1.1)
27
27
  rake (13.0.6)
28
- regexp_parser (2.6.1)
28
+ regexp_parser (2.6.2)
29
29
  rexml (3.2.5)
30
- rubocop (1.42.0)
30
+ rubocop (1.44.1)
31
31
  json (~> 2.3)
32
32
  parallel (~> 1.10)
33
- parser (>= 3.1.2.1)
33
+ parser (>= 3.2.0.0)
34
34
  rainbow (>= 2.2.2, < 4.0)
35
35
  regexp_parser (>= 1.8, < 3.0)
36
36
  rexml (>= 3.2.5, < 4.0)
37
37
  rubocop-ast (>= 1.24.1, < 2.0)
38
38
  ruby-progressbar (~> 1.7)
39
- unicode-display_width (>= 1.4.0, < 3.0)
39
+ unicode-display_width (>= 2.4.0, < 3.0)
40
40
  rubocop-ast (1.24.1)
41
41
  parser (>= 3.1.1.0)
42
42
  rubocop-performance (1.15.2)
data/README.md CHANGED
@@ -220,6 +220,7 @@ Here are a few examples of Ruby Standard-compliant teams & projects:
220
220
  * [Test Double](https://testdouble.com/agency)
221
221
  * [Amazon Web Services](https://aws.amazon.com/)
222
222
  * [Arrows](https://arrows.to/)
223
+ * [Avo Admin](https://avohq.io/)
223
224
  * [Babylist](https://www.babylist.com/)
224
225
  * [Brand New Box](https://brandnewbox.com)
225
226
  * [Brave Software](https://github.com/brave-intl/publishers)
data/config/base.yml CHANGED
@@ -38,6 +38,9 @@ Gemspec/DependencyVersion:
38
38
  Gemspec/DeprecatedAttributeAssignment:
39
39
  Enabled: true
40
40
 
41
+ Gemspec/DevelopmentDependencies:
42
+ Enabled: false
43
+
41
44
  Gemspec/DuplicatedAssignment:
42
45
  Enabled: true
43
46
  Include:
@@ -824,6 +827,9 @@ Lint/UselessElseWithoutRescue:
824
827
  Lint/UselessMethodDefinition:
825
828
  Enabled: false
826
829
 
830
+ Lint/UselessRescue:
831
+ Enabled: true
832
+
827
833
  Lint/UselessRuby2Keywords:
828
834
  Enabled: true
829
835
 
@@ -1213,6 +1219,9 @@ Style/CommentAnnotation:
1213
1219
  Style/CommentedKeyword:
1214
1220
  Enabled: false
1215
1221
 
1222
+ Style/ComparableClamp:
1223
+ Enabled: true
1224
+
1216
1225
  Style/ConcatArrayLiterals:
1217
1226
  Enabled: false
1218
1227
 
@@ -1407,6 +1416,9 @@ Style/InlineComment:
1407
1416
  Style/InverseMethods:
1408
1417
  Enabled: false
1409
1418
 
1419
+ Style/InvertibleUnlessCondition:
1420
+ Enabled: false
1421
+
1410
1422
  Style/IpAddresses:
1411
1423
  Enabled: false
1412
1424
 
data/config/ruby-2.3.yml CHANGED
@@ -2,3 +2,6 @@ inherit_from: ./ruby-2.4.yml
2
2
 
3
3
  AllCops:
4
4
  TargetRubyVersion: 2.3
5
+
6
+ Style/ComparableClamp:
7
+ Enabled: false
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.22.1")
2
+ VERSION = Gem::Version.new("1.23.0")
3
3
  end
data/standard.gemspec CHANGED
@@ -19,7 +19,7 @@ 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.42.0"
22
+ spec.add_dependency "rubocop", "1.44.1"
23
23
  spec.add_dependency "rubocop-performance", "1.15.2"
24
24
 
25
25
  # not semver: first three are lsp protocol version, last is patch
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.22.1
4
+ version: 1.23.0
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-01-19 00:00:00.000000000 Z
11
+ date: 2023-02-06 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.42.0
19
+ version: 1.44.1
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.42.0
26
+ version: 1.44.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-performance
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 3.17.0.2
55
- description:
55
+ description:
56
56
  email:
57
57
  - searls@gmail.com
58
58
  executables:
@@ -120,7 +120,7 @@ files:
120
120
  homepage: https://github.com/testdouble/standard
121
121
  licenses: []
122
122
  metadata: {}
123
- post_install_message:
123
+ post_install_message:
124
124
  rdoc_options: []
125
125
  require_paths:
126
126
  - lib
@@ -135,8 +135,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  - !ruby/object:Gem::Version
136
136
  version: '0'
137
137
  requirements: []
138
- rubygems_version: 3.3.7
139
- signing_key:
138
+ rubygems_version: 3.1.6
139
+ signing_key:
140
140
  specification_version: 4
141
141
  summary: Ruby Style Guide, with linter & automatic code fixer
142
142
  test_files: []