standard-performance 1.3.1 → 1.5.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: a4ab28cf916d093690ff33865155e668f9d5c697668bd481d178b4d4089f4581
4
- data.tar.gz: 2823d9276cb6b5d270f6c14f0c7c0f525bdc2480888bb0e7359dcdf7da4c63b4
3
+ metadata.gz: 81cb0142a3b80a3ed42ee90819299d87f586307e212ec150d069b445de835966
4
+ data.tar.gz: a69e0c561c9d9c43c392fc7154511bc681b8b4116dd790b934dabafd3ef0387b
5
5
  SHA512:
6
- metadata.gz: 94e0731a12ff01cb7215308b15a361df9765f00d21da7357e2d6a3f7feef207f8a79a491d7ad84bd35449559bcb0728e639064b95ae77da9044f2c034ed7814f
7
- data.tar.gz: a74501a9ee2a4684d447e9edcb318d25ea335fb52e61a3553b1fc6246cbf5c7af28d596e01642d113efc8920cc0e0c33980a2c27ccdf3099f56e922e78bc3d8b
6
+ metadata.gz: 3810b9eddebd89aee1721e10c19b3198252e1f35c7029af414873b3836a63984b98dc8557b88d034f06e766864519fb02421de892a98aba7a0f489ed530e303a
7
+ data.tar.gz: d6b03da19e199e73aa76c399c52a2444823804e3f8a9767d00ff270c4434873067066bd74bf15f0ac36a1c0e2def9c216b953d5b42cbb7cad58663f2da157411
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.5.0
2
+
3
+ - Updates rubocop-performance from 1.21.0 to [1.22.1](https://github.com/rubocop/rubocop-performance/releases/tag/v1.22.1)
4
+
5
+ ## 1.4.0
6
+
7
+ - Updates rubocop-performance from 1.20.1 to [1.21.0](https://github.com/rubocop/rubocop-performance/releases/tag/v1.21.0)
8
+
1
9
  ## [1.3.1]
2
10
 
3
11
  - Updates rubocop-performance from 1.20.1 to [1.20.2](https://github.com/rubocop/rubocop-performance/releases/tag/v1.20.2)
data/Gemfile CHANGED
@@ -5,8 +5,4 @@ gem "rake"
5
5
  gem "minitest"
6
6
  gem "standard"
7
7
  gem "m"
8
-
9
- # Remove branch after 2.7 is dropped
10
- if RUBY_VERSION > "3"
11
- gem "mocktail"
12
- end
8
+ gem "mocktail"
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard-performance (1.3.1)
4
+ standard-performance (1.5.0)
5
5
  lint_roller (~> 1.1)
6
- rubocop-performance (~> 1.20.2)
6
+ rubocop-performance (~> 1.22.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -17,8 +17,11 @@ GEM
17
17
  rake (>= 0.9.2.2)
18
18
  method_source (1.0.0)
19
19
  minitest (5.19.0)
20
+ mocktail (2.0.0)
21
+ sorbet-eraser (~> 0.3.1)
22
+ sorbet-runtime (~> 0.5.9204)
20
23
  parallel (1.24.0)
21
- parser (3.3.0.2)
24
+ parser (3.3.1.0)
22
25
  ast (~> 2.4.1)
23
26
  racc
24
27
  racc (1.7.3)
@@ -37,12 +40,14 @@ GEM
37
40
  rubocop-ast (>= 1.30.0, < 2.0)
38
41
  ruby-progressbar (~> 1.7)
39
42
  unicode-display_width (>= 2.4.0, < 3.0)
40
- rubocop-ast (1.30.0)
41
- parser (>= 3.2.1.0)
42
- rubocop-performance (1.20.2)
43
+ rubocop-ast (1.31.3)
44
+ parser (>= 3.3.1.0)
45
+ rubocop-performance (1.22.1)
43
46
  rubocop (>= 1.48.1, < 2.0)
44
- rubocop-ast (>= 1.30.0, < 2.0)
47
+ rubocop-ast (>= 1.31.1, < 2.0)
45
48
  ruby-progressbar (1.13.0)
49
+ sorbet-eraser (0.3.1)
50
+ sorbet-runtime (0.5.11435)
46
51
  standard (1.33.0)
47
52
  language_server-protocol (~> 3.17.0.2)
48
53
  lint_roller (~> 1.0)
@@ -62,6 +67,7 @@ PLATFORMS
62
67
  DEPENDENCIES
63
68
  m
64
69
  minitest
70
+ mocktail
65
71
  rake
66
72
  standard
67
73
  standard-performance!
data/config/base.yml CHANGED
@@ -11,7 +11,7 @@ Performance/BindCall:
11
11
  Enabled: true
12
12
 
13
13
  Performance/BlockGivenWithExplicitBlock:
14
- Enabled: true
14
+ Enabled: false
15
15
 
16
16
  Performance/Caller:
17
17
  Enabled: true
@@ -1,5 +1,5 @@
1
1
  module Standard
2
2
  module Performance
3
- VERSION = "1.3.1"
3
+ VERSION = "1.5.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-performance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.5.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: 2024-01-10 00:00:00.000000000 Z
11
+ date: 2024-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lint_roller
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.20.2
33
+ version: 1.22.0
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.20.2
40
+ version: 1.22.0
41
41
  description:
42
42
  email:
43
43
  - searls@gmail.com
@@ -82,14 +82,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
84
84
  - !ruby/object:Gem::Version
85
- version: 2.7.0
85
+ version: 3.0.0
86
86
  required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.1.6
92
+ rubygems_version: 3.4.10
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: Standard Ruby Plugin providing configuration for rubocop-performance