standard 1.6.0 → 1.7.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: 4c7b13ec3c3ce7da4b6ecd6e2c46e563decb8de9eb48b82631c8385853f9564d
4
- data.tar.gz: f6a2c1993b7e523ba1ed662080db51ea4ee7640156d682262bc07d3b3d88a2e8
3
+ metadata.gz: fd2d4eaef4d46d84e027738a55cc6734883fb098ddbd5ea4911fb871578097b5
4
+ data.tar.gz: 8098c55b94370d7c977cf9d592a9e4285c62b9378d96ffb3daa57513acd04299
5
5
  SHA512:
6
- metadata.gz: cc07fd96f1b79f272140805c650035092402113a1bcbe28150b5786dfa7edb7b36f23f87679edd82ed3ad32a315835d408e93ba98a1ddfefc4ea007bdb56f792
7
- data.tar.gz: 6c484f444face8fd603be92bab550c67584842050414c5bf1d7ee4a962c5bf0dba4afeb1eacbc33e1a1f34192480acb32ec959cea249ae4e83b5b3430dc14f3b
6
+ metadata.gz: '0495bf123db9cd15aab84de44efd8b5b4dcbfc68c5cd52fffcd94c5f417606245290cfb17f776a110b88c4f70b2fd974ee9a176ae9f8f07a4906311ef1a7d27c'
7
+ data.tar.gz: fa8bba48d7c55b3a10fd317783b8d9f62855d1d0c38f6a83b40449f69076bfb19559b5c2add7129bd96a3ab73f3c1477f4acac8ebb68091595b1803770f9fda8
@@ -5,6 +5,10 @@ on:
5
5
  branches: [ main ]
6
6
  pull_request:
7
7
  branches: [ main ]
8
+ workflow_run:
9
+ workflows: ["Update"]
10
+ types:
11
+ - completed
8
12
 
9
13
  jobs:
10
14
  test:
@@ -12,7 +16,7 @@ jobs:
12
16
  strategy:
13
17
  matrix:
14
18
  os: [ ubuntu-latest ]
15
- ruby-version: [2.5, 2.6, 2.7, 3.0, 3.1]
19
+ ruby-version: [2.5, 2.6, 2.7, '3.0', 3.1]
16
20
 
17
21
  runs-on: ${{ matrix.os }}
18
22
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.7.0
4
+
5
+ * Update rubocop-performance from 1.13.1 to [1.13.2](https://github.com/rubocop/rubocop-performance/tag/v1.13.2)
6
+ * Update rubocop from 1.24.1 to [1.25.0](https://github.com/rubocop/rubocop/tag/v1.25.0)
7
+
3
8
  ## 1.6.0
4
9
 
5
10
  * Update rubocop-performance from 1.12.0 to [1.13.1](https://github.com/rubocop/rubocop-performance/tag/v1.13.1)
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.6.0)
5
- rubocop (= 1.24.1)
6
- rubocop-performance (= 1.13.1)
4
+ standard (1.7.0)
5
+ rubocop (= 1.25.0)
6
+ rubocop-performance (= 1.13.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -20,13 +20,13 @@ GEM
20
20
  pry (0.14.1)
21
21
  coderay (~> 1.1)
22
22
  method_source (~> 1.0)
23
- rainbow (3.0.0)
23
+ rainbow (3.1.1)
24
24
  rake (13.0.6)
25
25
  regexp_parser (2.2.0)
26
26
  rexml (3.2.5)
27
- rubocop (1.24.1)
27
+ rubocop (1.25.0)
28
28
  parallel (~> 1.10)
29
- parser (>= 3.0.0.0)
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
@@ -35,7 +35,7 @@ GEM
35
35
  unicode-display_width (>= 1.4.0, < 3.0)
36
36
  rubocop-ast (1.15.1)
37
37
  parser (>= 3.0.1.1)
38
- rubocop-performance (1.13.1)
38
+ rubocop-performance (1.13.2)
39
39
  rubocop (>= 1.7.0, < 2.0)
40
40
  rubocop-ast (>= 0.4.0)
41
41
  ruby-progressbar (1.11.0)
data/config/base.yml CHANGED
@@ -1313,6 +1313,7 @@ Style/HashLikeCase:
1313
1313
  Style/HashSyntax:
1314
1314
  Enabled: true
1315
1315
  EnforcedStyle: ruby19_no_mixed_keys
1316
+ EnforcedShorthandSyntax: either
1316
1317
 
1317
1318
  Style/HashTransformKeys:
1318
1319
  Enabled: false
data/config/ruby-3.0.yml CHANGED
@@ -8,6 +8,3 @@ Style/HashExcept:
8
8
 
9
9
  Naming/BlockForwarding:
10
10
  Enabled: false
11
-
12
- Naming/BlockForwarding:
13
- Enabled: false
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.6.0")
2
+ VERSION = Gem::Version.new("1.7.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.24.1"
23
- spec.add_dependency "rubocop-performance", "1.13.1"
22
+ spec.add_dependency "rubocop", "1.25.0"
23
+ spec.add_dependency "rubocop-performance", "1.13.2"
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.6.0
4
+ version: 1.7.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-01-05 00:00:00.000000000 Z
11
+ date: 2022-01-18 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.24.1
19
+ version: 1.25.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.24.1
26
+ version: 1.25.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.1
33
+ version: 1.13.2
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.1
40
+ version: 1.13.2
41
41
  description:
42
42
  email:
43
43
  - searls@gmail.com
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  - !ruby/object:Gem::Version
114
114
  version: '0'
115
115
  requirements: []
116
- rubygems_version: 3.2.22
116
+ rubygems_version: 3.2.15
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Ruby Style Guide, with linter & automatic code fixer