rubocop-performance 1.22.1 → 1.24.0

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: 8f39eb7cfffa29b6374302e0fae0b46f55a1ccce24798fa2609c4f80c3dea277
4
- data.tar.gz: 87b1a993f80ae214d981e95cc5a7645f4ea92dca4255f64fa53ec29f5959500e
3
+ metadata.gz: 1b4cdc2536f76691be677a1e203a886fae5e170f550424bed14d579f39a87e75
4
+ data.tar.gz: 6ea02935a50fcdeb0b07d1a5d67c4414c71115019cb02dae4746c207f798cad6
5
5
  SHA512:
6
- metadata.gz: 99a4776f28e154fe3017ed3e97be8b9121a262e8f40af1aed8d4085fc5ba4e1be7499ea12fe3d76e6858ac45ff88e031dfce6dc129743b52d5fd5815da596775
7
- data.tar.gz: 9160234e8fcdf23f550d41d6429910e09276806f40ec494331d52e5f8480b2d066ac8ede04bc0144c8dc9e9e3a2fce16a8b64746e9ed0c794c278e3426d76a7b
6
+ metadata.gz: 7bc4f69ef0a5ca779626b29d0a7c5333bf135b29d06d1be009acd4e9ffaa368873cb9977a94e9c5d5f50cb1c000d9fa243b8557badbab00756469a0b6a366662
7
+ data.tar.gz: 47e7f03cf61d57a3f9bd8e3cdb79f722fdaa279d300d2de5532435c1231fa06c28b1a148ab31c7b62775d1449a284fc43cee4bd36bbd16b1065145f022c8f729
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012-23 Bozhidar Batsov
1
+ Copyright (c) 2012-25 Bozhidar Batsov
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -30,13 +30,13 @@ ways to do this:
30
30
  Put this into your `.rubocop.yml`.
31
31
 
32
32
  ```yaml
33
- require: rubocop-performance
33
+ plugins: rubocop-performance
34
34
  ```
35
35
 
36
36
  Alternatively, use the following array notation when specifying multiple extensions.
37
37
 
38
38
  ```yaml
39
- require:
39
+ plugins:
40
40
  - rubocop-other-extension
41
41
  - rubocop-performance
42
42
  ```
@@ -44,10 +44,13 @@ require:
44
44
  Now you can run `rubocop` and it will automatically load the RuboCop Performance
45
45
  cops together with the standard cops.
46
46
 
47
+ > [!NOTE]
48
+ > The plugin system is supported in RuboCop 1.72+. In earlier versions, use `require` instead of `plugins`.
49
+
47
50
  ### Command line
48
51
 
49
52
  ```sh
50
- $ rubocop --require rubocop-performance
53
+ $ rubocop --plugin rubocop-performance
51
54
  ```
52
55
 
53
56
  ### Rake task
@@ -56,7 +59,7 @@ $ rubocop --require rubocop-performance
56
59
  require 'rubocop/rake_task'
57
60
 
58
61
  RuboCop::RakeTask.new do |task|
59
- task.requires << 'rubocop-performance'
62
+ task.plugins << 'rubocop-performance'
60
63
  end
61
64
  ```
62
65
 
data/config/default.yml CHANGED
@@ -326,6 +326,12 @@ Performance/StartWith:
326
326
  VersionAdded: '0.36'
327
327
  VersionChanged: '1.10'
328
328
 
329
+ Performance/StringBytesize:
330
+ Description: "Use `String#bytesize` instead of calculating the size of the bytes array."
331
+ Safe: false
332
+ Enabled: 'pending'
333
+ VersionAdded: '1.23'
334
+
329
335
  Performance/StringIdentifierArgument:
330
336
  Description: 'Use symbol identifier argument instead of string identifier argument.'
331
337
  Enabled: pending
@@ -375,3 +381,9 @@ Performance/UriDefaultParser:
375
381
  Description: 'Use `URI::DEFAULT_PARSER` instead of `URI::Parser.new`.'
376
382
  Enabled: true
377
383
  VersionAdded: '0.50'
384
+
385
+ Performance/ZipWithoutBlock:
386
+ Description: 'Checks for `map { |id| [id] }` and suggests replacing it with `zip`.'
387
+ Enabled: pending
388
+ Safe: false
389
+ VersionAdded: '1.24'
@@ -44,8 +44,8 @@ module RuboCop
44
44
 
45
45
  def_node_matcher :endless_range?, <<~PATTERN
46
46
  {
47
- ({irange erange} nil? (int positive?))
48
- ({irange erange} (int positive?) nil?)
47
+ (range nil? (int positive?))
48
+ (range (int positive?) nil?)
49
49
  }
50
50
  PATTERN
51
51
 
@@ -58,6 +58,7 @@ module RuboCop
58
58
  class CaseWhenSplat < Base
59
59
  include Alignment
60
60
  include RangeHelp
61
+ include CommentsHelp
61
62
  extend AutoCorrector
62
63
 
63
64
  MSG = 'Reordering `when` conditions with a splat to the end of the `when` branches can improve performance.'
@@ -116,11 +117,18 @@ module RuboCop
116
117
  def reordering_correction(when_node)
117
118
  new_condition = replacement(when_node.conditions)
118
119
 
119
- if same_line?(when_node, when_node.body)
120
- new_condition_with_then(when_node, new_condition)
121
- else
122
- new_branch_without_then(when_node, new_condition)
123
- end
120
+ condition =
121
+ if same_line?(when_node, when_node.body)
122
+ new_condition_with_then(when_node, new_condition)
123
+ else
124
+ new_branch_without_then(when_node, new_condition)
125
+ end
126
+
127
+ condition_comments = comments_in_range(when_node).map do |comment_node|
128
+ "#{indent_for(comment_node)}#{comment_node.source}"
129
+ end.join("\n")
130
+
131
+ "#{condition}#{condition_comments}"
124
132
  end
125
133
 
126
134
  def when_branch_range(when_node)
@@ -134,7 +142,13 @@ module RuboCop
134
142
  end
135
143
 
136
144
  def new_branch_without_then(node, new_condition)
137
- "\n#{indent_for(node)}when #{new_condition}\n#{indent_for(node.body)}#{node.body.source}"
145
+ new_branch = "\n#{indent_for(node)}when #{new_condition}\n"
146
+
147
+ if node.body
148
+ "#{new_branch}#{indent_for(node.body)}#{node.body.source}"
149
+ else
150
+ new_branch
151
+ end
138
152
  end
139
153
 
140
154
  def indent_for(node)
@@ -45,6 +45,8 @@ module RuboCop
45
45
 
46
46
  RETURNS_NEW_ARRAY = (ALWAYS_RETURNS_NEW_ARRAY + RETURNS_NEW_ARRAY_WHEN_NO_BLOCK).freeze
47
47
 
48
+ RESTRICT_ON_SEND = RETURNS_NEW_ARRAY
49
+
48
50
  MSG = 'Use unchained `%<method>s` and `%<second_method>s!` ' \
49
51
  '(followed by `return array` if required) instead of chaining ' \
50
52
  '`%<method>s...%<second_method>s`.'
@@ -52,7 +54,7 @@ module RuboCop
52
54
  def_node_matcher :chain_array_allocation?, <<~PATTERN
53
55
  (send {
54
56
  (send _ $%RETURN_NEW_ARRAY_WHEN_ARGS {int lvar ivar cvar gvar send})
55
- ({block numblock} (send _ $%ALWAYS_RETURNS_NEW_ARRAY) ...)
57
+ (any_block (send _ $%ALWAYS_RETURNS_NEW_ARRAY) ...)
56
58
  (send _ $%RETURNS_NEW_ARRAY ...)
57
59
  } $%HAS_MUTATION_ALTERNATIVE ...)
58
60
  PATTERN
@@ -73,7 +75,7 @@ module RuboCop
73
75
  def enumerable_select_method?(node)
74
76
  # NOTE: `QueryMethods#select` in Rails accepts positional arguments, whereas `Enumerable#select` does not.
75
77
  # This difference can be utilized to reduce the knowledge requirements related to `select`.
76
- (node.block_type? || node.numblock_type?) && node.send_node.arguments.empty?
78
+ node.any_block_type? && node.send_node.arguments.empty?
77
79
  end
78
80
  end
79
81
  end
@@ -65,6 +65,8 @@ module RuboCop
65
65
 
66
66
  HASH_METHODS = (ENUMERABLE_METHOD_NAMES | NONMUTATING_HASH_METHODS).to_set.freeze
67
67
 
68
+ RESTRICT_ON_SEND = ARRAY_METHODS + HASH_METHODS
69
+
68
70
  def_node_matcher :kernel_loop?, <<~PATTERN
69
71
  (block
70
72
  (send {nil? (const nil? :Kernel)} :loop)
@@ -18,14 +18,14 @@ module RuboCop
18
18
  #
19
19
  # [source,ruby]
20
20
  # ----
21
- # `Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size`
21
+ # Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size
22
22
  # ----
23
23
  #
24
24
  # becomes:
25
25
  #
26
26
  # [source,ruby]
27
27
  # ----
28
- # `Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }`
28
+ # Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }
29
29
  # ----
30
30
  #
31
31
  # @example
@@ -75,7 +75,7 @@ module RuboCop
75
75
  end
76
76
 
77
77
  def allowed_parent?(node)
78
- node && (node.casgn_type? || node.block_type?)
78
+ node&.type?(:casgn, :block)
79
79
  end
80
80
 
81
81
  def contains_splat?(node)
@@ -38,7 +38,7 @@ module RuboCop
38
38
  # (We don't even catch it if the Range is in double parens)
39
39
 
40
40
  def_node_matcher :range_include, <<~PATTERN
41
- (call {irange erange (begin {irange erange})} ${:include? :member?} ...)
41
+ (call {range (begin range)} ${:include? :member?} ...)
42
42
  PATTERN
43
43
 
44
44
  def on_send(node)
@@ -72,7 +72,7 @@ module RuboCop
72
72
 
73
73
  def requires_parentheses?(arg)
74
74
  return true if arg.if_type? && arg.ternary?
75
- return true if arg.and_type? || arg.or_type? || arg.range_type?
75
+ return true if arg.operator_keyword? || arg.range_type?
76
76
 
77
77
  call_like?(arg) && requires_parentheses_for_call_like?(arg)
78
78
  end
@@ -84,7 +84,7 @@ module RuboCop
84
84
  end
85
85
 
86
86
  def call_like?(arg)
87
- arg.call_type? || arg.yield_type? || arg.super_type?
87
+ arg.type?(:call, :yield, :super)
88
88
  end
89
89
  end
90
90
  end
@@ -48,7 +48,7 @@ module RuboCop
48
48
  RESTRICT_ON_SEND = %i[[] slice first last take length size empty?].freeze
49
49
 
50
50
  def_node_matcher :redundant_chars_call?, <<~PATTERN
51
- (send $(send _ :chars) $_ $...)
51
+ (send $(send !nil? :chars) $_ $...)
52
52
  PATTERN
53
53
 
54
54
  def on_send(node)
@@ -239,7 +239,7 @@ module RuboCop
239
239
 
240
240
  def scope_root(node)
241
241
  node.each_ancestor.find do |ancestor|
242
- ancestor.def_type? || ancestor.defs_type? || ancestor.class_type? || ancestor.module_type?
242
+ ancestor.type?(:def, :defs, :class, :module)
243
243
  end
244
244
  end
245
245
 
@@ -46,7 +46,11 @@ module RuboCop
46
46
  message = format(MSG, current: bad_method, prefer: good_method)
47
47
 
48
48
  add_offense(node.loc.selector, message: message) do |corrector|
49
- string_literal = to_string_literal(replace_str)
49
+ # FIXME: When requiring only RuboCop 1.70.0 and above,
50
+ # `dup` in `replace_str.dup` becomes unnecessary, as
51
+ # frozen strings are handled in the `to_string_literal`
52
+ # implementation. Please remove it.
53
+ string_literal = to_string_literal(replace_str.dup)
50
54
  new_code = "#{receiver.source}#{node.loc.dot.source}#{good_method}(#{string_literal})"
51
55
 
52
56
  corrector.replace(node, new_code)
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Performance
6
+ # Checks for calls to `#bytes` counting method and suggests using `bytesize` instead.
7
+ # The `bytesize` method is more efficient and directly returns the size in bytes,
8
+ # avoiding the intermediate array allocation that `bytes.size` incurs.
9
+ #
10
+ # @safety
11
+ # This cop is unsafe because it assumes that the receiver
12
+ # responds to `#bytesize` method.
13
+ #
14
+ # @example
15
+ # # bad
16
+ # string_var.bytes.count
17
+ # "foobar".bytes.size
18
+ #
19
+ # # good
20
+ # string_var.bytesize
21
+ # "foobar".bytesize
22
+ class StringBytesize < Base
23
+ extend AutoCorrector
24
+
25
+ MSG = 'Use `String#bytesize` instead of calculating the size of the bytes array.'
26
+ RESTRICT_ON_SEND = %i[size length count].freeze
27
+
28
+ def_node_matcher :string_bytes_method?, <<~MATCHER
29
+ (call (call !{nil? int} :bytes) {:size :length :count})
30
+ MATCHER
31
+
32
+ def on_send(node)
33
+ string_bytes_method?(node) do
34
+ range = node.receiver.loc.selector.begin.join(node.source_range.end)
35
+
36
+ add_offense(range) do |corrector|
37
+ corrector.replace(range, 'bytesize')
38
+ end
39
+ end
40
+ end
41
+ alias on_csend on_send
42
+ end
43
+ end
44
+ end
45
+ end
@@ -159,7 +159,7 @@ module RuboCop
159
159
 
160
160
  def array_literal?(node)
161
161
  receiver = node.children.first
162
- receiver&.literal? && receiver&.array_type?
162
+ receiver&.literal? && receiver.array_type?
163
163
  end
164
164
 
165
165
  def autocorrect(corrector, init, range)
@@ -36,6 +36,13 @@ module RuboCop
36
36
  MESSAGE_ONLY_IF = 'only if `%<count>s` is always 0 or more'
37
37
  RESTRICT_ON_SEND = %i[map collect].freeze
38
38
 
39
+ def_node_matcher :times_map_call, <<~PATTERN
40
+ {
41
+ (any_block $(call (call $!nil? :times) {:map :collect}) ...)
42
+ $(call (call $!nil? :times) {:map :collect} (block_pass ...))
43
+ }
44
+ PATTERN
45
+
39
46
  def on_send(node)
40
47
  check(node)
41
48
  end
@@ -62,7 +69,7 @@ module RuboCop
62
69
 
63
70
  def handleable_receiver?(node)
64
71
  receiver = node.receiver.receiver
65
- return true if receiver.literal? && (receiver.int_type? || receiver.float_type?)
72
+ return true if receiver.literal? && receiver.type?(:int, :float)
66
73
 
67
74
  node.receiver.dot?
68
75
  end
@@ -75,13 +82,6 @@ module RuboCop
75
82
  end
76
83
  format(template, count: count.source, map_or_collect: map_or_collect.method_name)
77
84
  end
78
-
79
- def_node_matcher :times_map_call, <<~PATTERN
80
- {
81
- ({block numblock} $(call (call $!nil? :times) {:map :collect}) ...)
82
- $(call (call $!nil? :times) {:map :collect} (block_pass ...))
83
- }
84
- PATTERN
85
85
  end
86
86
  end
87
87
  end
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Performance
6
+ # Checks for `map { |id| [id] }` and suggests replacing it with `zip`.
7
+ #
8
+ # @safety
9
+ # This cop is unsafe for novel definitions of `map` and `collect`
10
+ # on non-Enumerable objects that do not respond to `zip`.
11
+ # To make your object enumerable, define an `each` method
12
+ # as described in https://ruby-doc.org/core/Enumerable.html
13
+ #
14
+ # @example
15
+ # # bad
16
+ # [1, 2, 3].map { |id| [id] }
17
+ #
18
+ # # good
19
+ # [1, 2, 3].zip
20
+ class ZipWithoutBlock < Base
21
+ extend AutoCorrector
22
+
23
+ MSG = 'Use `zip` without a block argument instead.'
24
+ RESTRICT_ON_SEND = Set.new(%i[map collect]).freeze
25
+
26
+ # @!method map_with_array?(node)
27
+ def_node_matcher :map_with_array?, <<~PATTERN
28
+ {
29
+ (block (call !nil? RESTRICT_ON_SEND) (args (arg _)) (array (lvar _)))
30
+ (numblock (call !nil? RESTRICT_ON_SEND) 1 (array (lvar _)))
31
+ }
32
+ PATTERN
33
+
34
+ def on_send(node)
35
+ return unless map_with_array?(node.parent)
36
+
37
+ register_offense(node)
38
+ end
39
+ alias on_csend on_send
40
+
41
+ private
42
+
43
+ def register_offense(node)
44
+ offense_range = offense_range(node)
45
+ add_offense(offense_range) do |corrector|
46
+ corrector.replace(offense_range, 'zip')
47
+ end
48
+ end
49
+
50
+ def offense_range(node)
51
+ node.loc.selector.join(node.parent.loc.end)
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -44,6 +44,7 @@ require_relative 'performance/select_map'
44
44
  require_relative 'performance/size'
45
45
  require_relative 'performance/sort_reverse'
46
46
  require_relative 'performance/squeeze'
47
+ require_relative 'performance/string_bytesize'
47
48
  require_relative 'performance/start_with'
48
49
  require_relative 'performance/string_identifier_argument'
49
50
  require_relative 'performance/string_include'
@@ -53,3 +54,4 @@ require_relative 'performance/times_map'
53
54
  require_relative 'performance/unfreeze_string'
54
55
  require_relative 'performance/uri_default_parser'
55
56
  require_relative 'performance/chain_array_allocation'
57
+ require_relative 'performance/zip_without_block'
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'lint_roller'
4
+
5
+ module RuboCop
6
+ module Performance
7
+ # A plugin that integrates RuboCop Performance with RuboCop's plugin system.
8
+ class Plugin < LintRoller::Plugin
9
+ def about
10
+ LintRoller::About.new(
11
+ name: 'rubocop-performance',
12
+ version: Version::STRING,
13
+ homepage: 'https://github.com/rubocop/rubocop-performance',
14
+ description: 'A collection of RuboCop cops to check for performance optimizations in Ruby code.'
15
+ )
16
+ end
17
+
18
+ def supported?(context)
19
+ context.engine == :rubocop
20
+ end
21
+
22
+ def rules(_context)
23
+ project_root = Pathname.new(__dir__).join('../../..')
24
+
25
+ ConfigObsoletion.files << project_root.join('config', 'obsoletion.yml')
26
+
27
+ LintRoller::Rules.new(type: :path, config_format: :rubocop, value: project_root.join('config', 'default.yml'))
28
+ end
29
+ end
30
+ end
31
+ end
@@ -4,7 +4,7 @@ module RuboCop
4
4
  module Performance
5
5
  # This module holds the RuboCop Performance version information.
6
6
  module Version
7
- STRING = '1.22.1'
7
+ STRING = '1.24.0'
8
8
 
9
9
  def self.document_version
10
10
  STRING.match('\d+\.\d+').to_s
@@ -1,14 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RuboCop
4
- # RuboCop Performance project namespace
4
+ # RuboCop Performance project namespace.
5
5
  module Performance
6
- PROJECT_ROOT = Pathname.new(__dir__).parent.parent.expand_path.freeze
7
- CONFIG_DEFAULT = PROJECT_ROOT.join('config', 'default.yml').freeze
8
- CONFIG = YAML.safe_load(CONFIG_DEFAULT.read).freeze
9
-
10
- private_constant(:CONFIG_DEFAULT, :PROJECT_ROOT)
11
-
12
- ::RuboCop::ConfigObsoletion.files << PROJECT_ROOT.join('config', 'obsoletion.yml')
13
6
  end
14
7
  end
@@ -4,10 +4,7 @@ require 'rubocop'
4
4
 
5
5
  require_relative 'rubocop/performance'
6
6
  require_relative 'rubocop/performance/version'
7
- require_relative 'rubocop/performance/inject'
8
-
9
- RuboCop::Performance::Inject.defaults!
10
-
7
+ require_relative 'rubocop/performance/plugin'
11
8
  require_relative 'rubocop/cop/performance_cops'
12
9
 
13
10
  RuboCop::Cop::Lint::UnusedMethodArgument.singleton_class.prepend(
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-performance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.1
4
+ version: 1.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bozhidar Batsov
@@ -10,15 +10,29 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-09-17 00:00:00.000000000 Z
13
+ date: 2025-02-15 00:00:00.000000000 Z
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: lint_roller
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '1.1'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '1.1'
15
29
  - !ruby/object:Gem::Dependency
16
30
  name: rubocop
17
31
  requirement: !ruby/object:Gem::Requirement
18
32
  requirements:
19
33
  - - ">="
20
34
  - !ruby/object:Gem::Version
21
- version: 1.48.1
35
+ version: 1.72.1
22
36
  - - "<"
23
37
  - !ruby/object:Gem::Version
24
38
  version: '2.0'
@@ -28,7 +42,7 @@ dependencies:
28
42
  requirements:
29
43
  - - ">="
30
44
  - !ruby/object:Gem::Version
31
- version: 1.48.1
45
+ version: 1.72.1
32
46
  - - "<"
33
47
  - !ruby/object:Gem::Version
34
48
  version: '2.0'
@@ -38,7 +52,7 @@ dependencies:
38
52
  requirements:
39
53
  - - ">="
40
54
  - !ruby/object:Gem::Version
41
- version: 1.31.1
55
+ version: 1.38.0
42
56
  - - "<"
43
57
  - !ruby/object:Gem::Version
44
58
  version: '2.0'
@@ -48,7 +62,7 @@ dependencies:
48
62
  requirements:
49
63
  - - ">="
50
64
  - !ruby/object:Gem::Version
51
- version: 1.31.1
65
+ version: 1.38.0
52
66
  - - "<"
53
67
  - !ruby/object:Gem::Version
54
68
  version: '2.0'
@@ -112,6 +126,7 @@ files:
112
126
  - lib/rubocop/cop/performance/sort_reverse.rb
113
127
  - lib/rubocop/cop/performance/squeeze.rb
114
128
  - lib/rubocop/cop/performance/start_with.rb
129
+ - lib/rubocop/cop/performance/string_bytesize.rb
115
130
  - lib/rubocop/cop/performance/string_identifier_argument.rb
116
131
  - lib/rubocop/cop/performance/string_include.rb
117
132
  - lib/rubocop/cop/performance/string_replacement.rb
@@ -119,9 +134,10 @@ files:
119
134
  - lib/rubocop/cop/performance/times_map.rb
120
135
  - lib/rubocop/cop/performance/unfreeze_string.rb
121
136
  - lib/rubocop/cop/performance/uri_default_parser.rb
137
+ - lib/rubocop/cop/performance/zip_without_block.rb
122
138
  - lib/rubocop/cop/performance_cops.rb
123
139
  - lib/rubocop/performance.rb
124
- - lib/rubocop/performance/inject.rb
140
+ - lib/rubocop/performance/plugin.rb
125
141
  - lib/rubocop/performance/version.rb
126
142
  homepage: https://github.com/rubocop/rubocop-performance
127
143
  licenses:
@@ -130,9 +146,10 @@ metadata:
130
146
  homepage_uri: https://docs.rubocop.org/rubocop-performance/
131
147
  changelog_uri: https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md
132
148
  source_code_uri: https://github.com/rubocop/rubocop-performance/
133
- documentation_uri: https://docs.rubocop.org/rubocop-performance/1.22/
149
+ documentation_uri: https://docs.rubocop.org/rubocop-performance/1.24/
134
150
  bug_tracker_uri: https://github.com/rubocop/rubocop-performance/issues
135
151
  rubygems_mfa_required: 'true'
152
+ default_lint_roller_plugin: RuboCop::Performance::Plugin
136
153
  post_install_message:
137
154
  rdoc_options: []
138
155
  require_paths:
@@ -148,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
165
  - !ruby/object:Gem::Version
149
166
  version: '0'
150
167
  requirements: []
151
- rubygems_version: 3.2.33
168
+ rubygems_version: 3.1.6
152
169
  signing_key:
153
170
  specification_version: 4
154
171
  summary: Automatic performance checking tool for Ruby code.
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module Performance
5
- # Because RuboCop doesn't yet support plugins, we have to monkey patch in a
6
- # bit of our configuration.
7
- module Inject
8
- def self.defaults!
9
- path = CONFIG_DEFAULT.to_s
10
- hash = ConfigLoader.send(:load_yaml_configuration, path)
11
- config = Config.new(hash, path).tap(&:make_excludes_absolute)
12
- puts "configuration from #{path}" if ConfigLoader.debug?
13
- config = ConfigLoader.merge_with_default(config, path)
14
- ConfigLoader.instance_variable_set(:@default_configuration, config)
15
- end
16
- end
17
- end
18
- end