standard-performance 1.1.2 → 1.2.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: 930070f7d659e1940012562f63b84b5ed14c00c3e35d3d7e06319d0a9be44f21
4
- data.tar.gz: cf9d413e889ff09bf457903083f807bfe4f9c91e920024db8ba6fb70fbc5be8f
3
+ metadata.gz: 1e3de877fbeba90b5e1d960e1d0be37066c3056782bb9c7d8cb8a9cf68015cb3
4
+ data.tar.gz: e5ff45b0503319d7d32edd0145cea9d7bf90b8de6ce8a78b4743b022d2c3d5cd
5
5
  SHA512:
6
- metadata.gz: 516ddf177823b318787c6522f36a88e9321bab42c3965cbcf6283549fddab75ae8073615d4044788110e9aadeac61a0ce842a959b33a20ec6a27f73f9eda2050
7
- data.tar.gz: 8d23940d46563584f6c24870f1483c724fe94efb9d46555a0c602c2f592e8730702060cd9cb0d970b8a4f5e5650433c0f789448a6d91dd694bee69583eda7021
6
+ metadata.gz: ee17264a5ebf2a0ea998076d630a42ee40d21f0fe348b2fbb01d7c0803c8999318417f0492939d47189bcdca628c69dc62db9bca8a5aa368041c813361a2c25f
7
+ data.tar.gz: 56f03d54f49d953654e17051de0c5301ae7886b1ececb8b021b7ef8f7c09cf6b21704566de5e3e5ecf864ddcaf6ae03adeca91fc9405a2b6bf590128ec3e4a18
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
+ ## [1.2.0]
2
+
3
+ - Updates rubocop-performance from 1.18.0 to 1.19.0
4
+ - Leaves the new rule MapMethodChain disabled.
5
+
1
6
  ## [1.1.2]
2
7
 
3
8
  - Fix inheritance of YAML files when specifying an unsupported Ruby
4
- [standard#573](https://github.com/standardrb/standard/issues/573)
9
+ [#11](https://github.com/standardrb/standard-performance/issues/11)
5
10
 
6
11
  ## [1.1.1]
7
12
 
data/Gemfile CHANGED
@@ -5,4 +5,8 @@ gem "rake"
5
5
  gem "minitest"
6
6
  gem "standard"
7
7
  gem "m"
8
- gem "mocktail"
8
+
9
+ # Remove branch after 2.7 is dropped
10
+ if RUBY_VERSION > "3"
11
+ gem "mocktail"
12
+ end
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard-performance (1.1.2)
4
+ standard-performance (1.2.0)
5
5
  lint_roller (~> 1.1)
6
- rubocop-performance (~> 1.18.0)
6
+ rubocop-performance (~> 1.19.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -16,7 +16,7 @@ GEM
16
16
  method_source (>= 0.6.7)
17
17
  rake (>= 0.9.2.2)
18
18
  method_source (1.0.0)
19
- minitest (5.18.1)
19
+ minitest (5.19.0)
20
20
  mocktail (1.2.2)
21
21
  parallel (1.23.0)
22
22
  parser (3.2.2.3)
@@ -26,7 +26,7 @@ GEM
26
26
  rainbow (3.1.1)
27
27
  rake (13.0.6)
28
28
  regexp_parser (2.8.1)
29
- rexml (3.2.5)
29
+ rexml (3.2.6)
30
30
  rubocop (1.52.1)
31
31
  json (~> 2.3)
32
32
  parallel (~> 1.10)
@@ -39,18 +39,19 @@ GEM
39
39
  unicode-display_width (>= 2.4.0, < 3.0)
40
40
  rubocop-ast (1.29.0)
41
41
  parser (>= 3.2.1.0)
42
- rubocop-performance (1.18.0)
42
+ rubocop-performance (1.19.0)
43
43
  rubocop (>= 1.7.0, < 2.0)
44
44
  rubocop-ast (>= 0.4.0)
45
45
  ruby-progressbar (1.13.0)
46
- standard (1.30.0)
46
+ standard (1.30.1)
47
47
  language_server-protocol (~> 3.17.0.2)
48
48
  lint_roller (~> 1.0)
49
49
  rubocop (~> 1.52.0)
50
50
  standard-custom (~> 1.0.0)
51
51
  standard-performance (~> 1.1.0)
52
- standard-custom (1.0.1)
52
+ standard-custom (1.0.2)
53
53
  lint_roller (~> 1.0)
54
+ rubocop (~> 1.50)
54
55
  unicode-display_width (2.4.2)
55
56
 
56
57
  PLATFORMS
data/config/base.yml CHANGED
@@ -72,6 +72,9 @@ Performance/IoReadlines:
72
72
  Performance/MapCompact:
73
73
  Enabled: false
74
74
 
75
+ Performance/MapMethodChain:
76
+ Enabled: false
77
+
75
78
  Performance/MethodObjectAsBlock:
76
79
  Enabled: false
77
80
 
@@ -1,5 +1,5 @@
1
1
  module Standard
2
2
  module Performance
3
- VERSION = "1.1.2"
3
+ VERSION = "1.2.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.1.2
4
+ version: 1.2.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: 2023-07-14 00:00:00.000000000 Z
11
+ date: 2023-08-19 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.18.0
33
+ version: 1.19.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.18.0
40
+ version: 1.19.0
41
41
  description:
42
42
  email:
43
43
  - searls@gmail.com
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.4.14
92
+ rubygems_version: 3.2.15
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: Standard Ruby Plugin providing configuration for rubocop-performance