standard-performance 1.1.2 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 930070f7d659e1940012562f63b84b5ed14c00c3e35d3d7e06319d0a9be44f21
4
- data.tar.gz: cf9d413e889ff09bf457903083f807bfe4f9c91e920024db8ba6fb70fbc5be8f
3
+ metadata.gz: 24fa3326a4b6cc4af5ecf7b3a3378e3ad6fb57bd925679612abb54009a38f88a
4
+ data.tar.gz: e63bd4dd4ce6359bb48984c7a6342d31c09233cfc0af3516281223ce3c795b30
5
5
  SHA512:
6
- metadata.gz: 516ddf177823b318787c6522f36a88e9321bab42c3965cbcf6283549fddab75ae8073615d4044788110e9aadeac61a0ce842a959b33a20ec6a27f73f9eda2050
7
- data.tar.gz: 8d23940d46563584f6c24870f1483c724fe94efb9d46555a0c602c2f592e8730702060cd9cb0d970b8a4f5e5650433c0f789448a6d91dd694bee69583eda7021
6
+ metadata.gz: ad200a1c453196fbb0292a7b7aa8024b27434cf052a666aa40293d7b5865c4a31051f1a9ccab27c9bc810282d4389c27755dcf83d43f9b268c8ee015ebb6e3c4
7
+ data.tar.gz: 5b336bfdbb59bf137d0a81540e6d45feffc0df4daaf4c70163f69e2039483bdee0c1ec90d2b1ada8eda0bfbfd1df44ebc645fbd48c21a2ea16971bad11533254
data/CHANGELOG.md CHANGED
@@ -1,7 +1,16 @@
1
+ ## [1.2.1]
2
+
3
+ - Updates rubocop-performance from 1.19.0 to [1.19.1](https://github.com/rubocop/rubocop-performance/releases/tag/v1.19.1)
4
+
5
+ ## [1.2.0]
6
+
7
+ - Updates rubocop-performance from 1.18.0 to 1.19.0
8
+ - Leaves the new rule MapMethodChain disabled.
9
+
1
10
  ## [1.1.2]
2
11
 
3
12
  - Fix inheritance of YAML files when specifying an unsupported Ruby
4
- [standard#573](https://github.com/standardrb/standard/issues/573)
13
+ [#11](https://github.com/standardrb/standard-performance/issues/11)
5
14
 
6
15
  ## [1.1.1]
7
16
 
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.1)
5
5
  lint_roller (~> 1.1)
6
- rubocop-performance (~> 1.18.0)
6
+ rubocop-performance (~> 1.19.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -16,8 +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)
20
- mocktail (1.2.2)
19
+ minitest (5.19.0)
21
20
  parallel (1.23.0)
22
21
  parser (3.2.2.3)
23
22
  ast (~> 2.4.1)
@@ -26,7 +25,7 @@ GEM
26
25
  rainbow (3.1.1)
27
26
  rake (13.0.6)
28
27
  regexp_parser (2.8.1)
29
- rexml (3.2.5)
28
+ rexml (3.2.6)
30
29
  rubocop (1.52.1)
31
30
  json (~> 2.3)
32
31
  parallel (~> 1.10)
@@ -39,18 +38,19 @@ GEM
39
38
  unicode-display_width (>= 2.4.0, < 3.0)
40
39
  rubocop-ast (1.29.0)
41
40
  parser (>= 3.2.1.0)
42
- rubocop-performance (1.18.0)
41
+ rubocop-performance (1.19.1)
43
42
  rubocop (>= 1.7.0, < 2.0)
44
43
  rubocop-ast (>= 0.4.0)
45
44
  ruby-progressbar (1.13.0)
46
- standard (1.30.0)
45
+ standard (1.30.1)
47
46
  language_server-protocol (~> 3.17.0.2)
48
47
  lint_roller (~> 1.0)
49
48
  rubocop (~> 1.52.0)
50
49
  standard-custom (~> 1.0.0)
51
50
  standard-performance (~> 1.1.0)
52
- standard-custom (1.0.1)
51
+ standard-custom (1.0.2)
53
52
  lint_roller (~> 1.0)
53
+ rubocop (~> 1.50)
54
54
  unicode-display_width (2.4.2)
55
55
 
56
56
  PLATFORMS
@@ -61,7 +61,6 @@ PLATFORMS
61
61
  DEPENDENCIES
62
62
  m
63
63
  minitest
64
- mocktail
65
64
  rake
66
65
  standard
67
66
  standard-performance!
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.1"
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.1
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-07-14 00:00:00.000000000 Z
11
+ date: 2023-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lint_roller
@@ -30,15 +30,15 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.18.0
33
+ version: 1.19.1
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
41
- description:
40
+ version: 1.19.1
41
+ description:
42
42
  email:
43
43
  - searls@gmail.com
44
44
  executables: []
@@ -74,7 +74,7 @@ metadata:
74
74
  source_code_uri: https://github.com/standardrb/standard-performance
75
75
  changelog_uri: https://github.com/standardrb/standard-performance/blob/main/CHANGELOG.md
76
76
  default_lint_roller_plugin: Standard::Performance::Plugin
77
- post_install_message:
77
+ post_install_message:
78
78
  rdoc_options: []
79
79
  require_paths:
80
80
  - lib
@@ -89,8 +89,8 @@ 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
93
- signing_key:
92
+ rubygems_version: 3.1.6
93
+ signing_key:
94
94
  specification_version: 4
95
95
  summary: Standard Ruby Plugin providing configuration for rubocop-performance
96
96
  test_files: []