diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index 6ea785c0df..834f984cb7 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -63,6 +63,6 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-0.1.0/lib $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.10.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-1.7.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.87.0/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.6.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.7.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-1.41.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-2.2.0/lib" diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/size.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/size.rb deleted file mode 100644 index 916ad77b8c..0000000000 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/size.rb +++ /dev/null @@ -1,77 +0,0 @@ -# frozen_string_literal: true - -module RuboCop - module Cop - module Performance - # This cop is used to identify usages of `count` on an - # `Array` and `Hash` and change them to `size`. - # - # @example - # # bad - # [1, 2, 3].count - # - # # bad - # {a: 1, b: 2, c: 3}.count - # - # # good - # [1, 2, 3].size - # - # # good - # {a: 1, b: 2, c: 3}.size - # - # # good - # [1, 2, 3].count { |e| e > 2 } - # TODO: Add advanced detection of variables that could - # have been assigned to an array or a hash. - class Size < Cop - MSG = 'Use `size` instead of `count`.' - - def on_send(node) - return unless eligible_node?(node) - - add_offense(node, location: :selector) - end - - def autocorrect(node) - ->(corrector) { corrector.replace(node.loc.selector, 'size') } - end - - private - - def eligible_node?(node) - return false unless node.method?(:count) && !node.arguments? - - eligible_receiver?(node.receiver) && !allowed_parent?(node.parent) - end - - def eligible_receiver?(node) - return false unless node - - array?(node) || hash?(node) - end - - def allowed_parent?(node) - node&.block_type? - end - - def array?(node) - return true if node.array_type? - return false unless node.send_type? - - _, constant = *node.receiver - - constant == :Array || node.method?(:to_a) - end - - def hash?(node) - return true if node.hash_type? - return false unless node.send_type? - - _, constant = *node.receiver - - constant == :Hash || node.method?(:to_h) - end - end - end - end -end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/config/default.yml b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/config/default.yml similarity index 82% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/config/default.yml rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/config/default.yml index 4b30f22509..cd2acdbbc3 100644 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/config/default.yml +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/config/default.yml @@ -1,5 +1,16 @@ # This is the default configuration file. +Performance/AncestorsInclude: + Description: 'Use `A <= B` instead of `A.ancestors.include?(B)`.' + Reference: 'https://github.com/JuanitoFatas/fast-ruby#ancestorsinclude-vs--code' + Enabled: 'pending' + VersionAdded: '1.7' + +Performance/BigDecimalWithNumericArgument: + Description: 'Convert numeric argument to string before passing to BigDecimal.' + Enabled: 'pending' + VersionAdded: '1.7' + Performance/BindCall: Description: 'Use `bind_call(obj, args, ...)` instead of `bind(obj).call(args, ...)`.' Enabled: true @@ -131,6 +142,12 @@ Performance/InefficientHashSearch: VersionAdded: '0.56' Safe: false +Performance/IoReadlines: + Description: 'Use `IO.each_line` (`IO#each_line`) instead of `IO.readlines` (`IO#readlines`).' + Reference: 'https://docs.gitlab.com/ee/development/performance.html#reading-from-files-and-other-data-sources' + Enabled: false + VersionAdded: '1.7' + Performance/OpenStruct: Description: 'Use `Struct` instead of `OpenStruct`.' Enabled: false @@ -138,10 +155,11 @@ Performance/OpenStruct: Safe: false Performance/RangeInclude: - Description: 'Use `Range#cover?` instead of `Range#include?`.' + Description: 'Use `Range#cover?` instead of `Range#include?` (or `Range#member?`).' Reference: 'https://github.com/JuanitoFatas/fast-ruby#cover-vs-include-code' Enabled: true VersionAdded: '0.36' + VersionChanged: '1.7' Safe: false Performance/RedundantBlockCall: @@ -165,6 +183,16 @@ Performance/RedundantMerge: # Max number of key-value pairs to consider an offense MaxKeyValuePairs: 2 +Performance/RedundantSortBlock: + Description: 'Use `sort` instead of `sort { |a, b| a <=> b }`.' + Enabled: 'pending' + VersionAdded: '1.7' + +Performance/RedundantStringChars: + Description: 'Checks for redundant `String#chars`.' + Enabled: 'pending' + VersionAdded: '1.7' + Performance/RegexpMatch: Description: >- Use `match?` instead of `Regexp#match`, `String#match`, `Symbol#match`, @@ -179,6 +207,11 @@ Performance/ReverseEach: Enabled: true VersionAdded: '0.30' +Performance/ReverseFirst: + Description: 'Use `last(n).reverse` instead of `reverse.first(n)`.' + Enabled: 'pending' + VersionAdded: '1.7' + Performance/Size: Description: >- Use `size` instead of `count` for counting @@ -187,6 +220,17 @@ Performance/Size: Enabled: true VersionAdded: '0.30' +Performance/SortReverse: + Description: 'Use `sort.reverse` instead of `sort { |a, b| b <=> a }`.' + Enabled: 'pending' + VersionAdded: '1.7' + +Performance/Squeeze: + Description: "Use `squeeze('a')` instead of `gsub(/a+/, 'a')`." + Reference: 'https://github.com/JuanitoFatas/fast-ruby#remove-extra-spaces-or-other-contiguous-characters-code' + Enabled: 'pending' + VersionAdded: '1.7' + Performance/StartWith: Description: 'Use `start_with?` instead of a regex match anchored to the beginning of a string.' Reference: 'https://github.com/JuanitoFatas/fast-ruby#stringmatch-vs-stringstart_withstringend_with-code-start-code-end' @@ -200,6 +244,11 @@ Performance/StartWith: VersionAdded: '0.36' VersionChanged: '1.6' +Performance/StringInclude: + Description: 'Use `String#include?` instead of a regex match with literal-only pattern.' + Enabled: 'pending' + VersionAdded: '1.7' + Performance/StringReplacement: Description: >- Use `tr` instead of `gsub` when you are replacing the same diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop-performance.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop-performance.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop-performance.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop-performance.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/mixin/regexp_metacharacter.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/mixin/regexp_metacharacter.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/mixin/regexp_metacharacter.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/mixin/regexp_metacharacter.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/mixin/sort_block.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/mixin/sort_block.rb new file mode 100644 index 0000000000..8a287b9c4d --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/mixin/sort_block.rb @@ -0,0 +1,28 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + # Common functionality for cops checking `Enumerable#sort` blocks. + module SortBlock + extend NodePattern::Macros + include RangeHelp + + def_node_matcher :sort_with_block?, <<~PATTERN + (block + $(send _ :sort) + (args (arg $_a) (arg $_b)) + $send) + PATTERN + + def_node_matcher :replaceable_body?, <<~PATTERN + (send (lvar %1) :<=> (lvar %2)) + PATTERN + + private + + def sort_range(send, node) + range_between(send.loc.selector.begin_pos, node.loc.end.end_pos) + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/ancestors_include.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/ancestors_include.rb new file mode 100644 index 0000000000..ab02fac7c7 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/ancestors_include.rb @@ -0,0 +1,45 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop is used to identify usages of `ancestors.include?` and + # change them to use `<=` instead. + # + # @example + # # bad + # A.ancestors.include?(B) + # + # # good + # A <= B + # + class AncestorsInclude < Cop + include RangeHelp + + MSG = 'Use `<=` instead of `ancestors.include?`.' + + def_node_matcher :ancestors_include_candidate?, <<~PATTERN + (send (send $_subclass :ancestors) :include? $_superclass) + PATTERN + + def on_send(node) + return unless ancestors_include_candidate?(node) + + location_of_ancestors = node.children[0].loc.selector.begin_pos + end_location = node.loc.selector.end_pos + range = range_between(location_of_ancestors, end_location) + + add_offense(node, location: range) + end + + def autocorrect(node) + ancestors_include_candidate?(node) do |subclass, superclass| + lambda do |corrector| + corrector.replace(node, "#{subclass.source} <= #{superclass.source}") + end + end + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb new file mode 100644 index 0000000000..01f3bdd182 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb @@ -0,0 +1,43 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where numeric argument to BigDecimal should be + # converted to string. Initializing from String is faster + # than from Numeric for BigDecimal. + # + # @example + # + # # bad + # BigDecimal(1, 2) + # BigDecimal(1.2, 3, exception: true) + # + # # good + # BigDecimal('1', 2) + # BigDecimal('1.2', 3, exception: true) + # + class BigDecimalWithNumericArgument < Cop + MSG = 'Convert numeric argument to string before passing to `BigDecimal`.' + + def_node_matcher :big_decimal_with_numeric_argument?, <<~PATTERN + (send nil? :BigDecimal $numeric_type? ...) + PATTERN + + def on_send(node) + big_decimal_with_numeric_argument?(node) do |numeric| + add_offense(node, location: numeric.source_range) + end + end + + def autocorrect(node) + big_decimal_with_numeric_argument?(node) do |numeric| + lambda do |corrector| + corrector.wrap(numeric, "'", "'") + end + end + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/bind_call.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/bind_call.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/bind_call.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/bind_call.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/caller.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/caller.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/caller.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/caller.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/case_when_splat.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/case_when_splat.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/case_when_splat.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/case_when_splat.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/casecmp.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/casecmp.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/casecmp.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/casecmp.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/chain_array_allocation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/chain_array_allocation.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/chain_array_allocation.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/chain_array_allocation.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/compare_with_block.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/compare_with_block.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/compare_with_block.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/compare_with_block.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/count.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/count.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/count.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/count.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/delete_prefix.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/delete_prefix.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/delete_prefix.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/delete_prefix.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/delete_suffix.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/delete_suffix.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/delete_suffix.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/delete_suffix.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/detect.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/detect.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/detect.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/detect.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/double_start_end_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/double_start_end_with.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/double_start_end_with.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/double_start_end_with.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/end_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/end_with.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/end_with.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/end_with.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/fixed_size.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/fixed_size.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/fixed_size.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/fixed_size.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/flat_map.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/flat_map.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/flat_map.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/flat_map.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/inefficient_hash_search.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/inefficient_hash_search.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/inefficient_hash_search.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/inefficient_hash_search.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/io_readlines.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/io_readlines.rb new file mode 100644 index 0000000000..33e29ff372 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/io_readlines.rb @@ -0,0 +1,127 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where inefficient `readlines` method + # can be replaced by `each_line` to avoid fully loading file content into memory. + # + # @example + # + # # bad + # File.readlines('testfile').each { |l| puts l } + # IO.readlines('testfile', chomp: true).each { |l| puts l } + # + # conn.readlines(10).map { |l| l.size } + # file.readlines.find { |l| l.start_with?('#') } + # file.readlines.each { |l| puts l } + # + # # good + # File.open('testfile', 'r').each_line { |l| puts l } + # IO.open('testfile').each_line(chomp: true) { |l| puts l } + # + # conn.each_line(10).map { |l| l.size } + # file.each_line.find { |l| l.start_with?('#') } + # file.each_line { |l| puts l } + # + class IoReadlines < Cop + include RangeHelp + + MSG = 'Use `%s` instead of `%s`.' + ENUMERABLE_METHODS = (Enumerable.instance_methods + [:each]).freeze + + def_node_matcher :readlines_on_class?, <<~PATTERN + $(send $(send (const nil? {:IO :File}) :readlines ...) #enumerable_method?) + PATTERN + + def_node_matcher :readlines_on_instance?, <<~PATTERN + $(send $(send ${nil? !const_type?} :readlines ...) #enumerable_method? ...) + PATTERN + + def on_send(node) + readlines_on_class?(node) do |enumerable_call, readlines_call| + offense(node, enumerable_call, readlines_call) + end + + readlines_on_instance?(node) do |enumerable_call, readlines_call, _| + offense(node, enumerable_call, readlines_call) + end + end + + def autocorrect(node) + readlines_on_instance?(node) do |enumerable_call, readlines_call, receiver| + # We cannot safely correct `.readlines` method called on IO/File classes + # due to its signature and we are not sure with implicit receiver + # if it is called in the context of some instance or mentioned class. + return if receiver.nil? + + lambda do |corrector| + range = correction_range(enumerable_call, readlines_call) + + if readlines_call.arguments? + call_args = build_call_args(readlines_call.arguments) + replacement = "each_line(#{call_args})" + else + replacement = 'each_line' + end + + corrector.replace(range, replacement) + end + end + end + + private + + def enumerable_method?(node) + ENUMERABLE_METHODS.include?(node.to_sym) + end + + def offense(node, enumerable_call, readlines_call) + range = offense_range(enumerable_call, readlines_call) + good_method = build_good_method(enumerable_call) + bad_method = build_bad_method(enumerable_call) + + add_offense( + node, + location: range, + message: format(MSG, good: good_method, bad: bad_method) + ) + end + + def offense_range(enumerable_call, readlines_call) + readlines_pos = readlines_call.loc.selector.begin_pos + enumerable_pos = enumerable_call.loc.selector.end_pos + range_between(readlines_pos, enumerable_pos) + end + + def build_good_method(enumerable_call) + if enumerable_call.method?(:each) + 'each_line' + else + "each_line.#{enumerable_call.method_name}" + end + end + + def build_bad_method(enumerable_call) + "readlines.#{enumerable_call.method_name}" + end + + def correction_range(enumerable_call, readlines_call) + begin_pos = readlines_call.loc.selector.begin_pos + + end_pos = if enumerable_call.method?(:each) + enumerable_call.loc.expression.end_pos + else + enumerable_call.loc.dot.begin_pos + end + + range_between(begin_pos, end_pos) + end + + def build_call_args(call_args_node) + call_args_node.map(&:source).join(', ') + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/open_struct.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/open_struct.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/open_struct.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/open_struct.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/range_include.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/range_include.rb similarity index 72% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/range_include.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/range_include.rb index 0e49753c54..11b0ff7b29 100644 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/range_include.rb +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/range_include.rb @@ -3,18 +3,19 @@ module RuboCop module Cop module Performance - # This cop identifies uses of `Range#include?`, which iterates over each + # This cop identifies uses of `Range#include?` and `Range#member?`, which iterates over each # item in a `Range` to see if a specified item is there. In contrast, # `Range#cover?` simply compares the target item with the beginning and # end points of the `Range`. In a great majority of cases, this is what # is wanted. # - # This cop is `Safe: false` by default because `Range#include?` and + # This cop is `Safe: false` by default because `Range#include?` (or `Range#member?`) and # `Range#cover?` are not equivalent behaviour. # # @example # # bad # ('a'..'z').include?('b') # => true + # ('a'..'z').member?('b') # => true # # # good # ('a'..'z').cover?('b') # => true @@ -24,7 +25,7 @@ module RuboCop # # ('a'..'z').cover?('yellow') # => true class RangeInclude < Cop - MSG = 'Use `Range#cover?` instead of `Range#include?`.' + MSG = 'Use `Range#cover?` instead of `Range#%s`.' # TODO: If we traced out assignments of variables to their uses, we # might pick up on a few more instances of this issue @@ -32,13 +33,14 @@ module RuboCop # (We don't even catch it if the Range is in double parens) def_node_matcher :range_include, <<~PATTERN - (send {irange erange (begin {irange erange})} :include? ...) + (send {irange erange (begin {irange erange})} ${:include? :member?} ...) PATTERN def on_send(node) - return unless range_include(node) - - add_offense(node, location: :selector) + range_include(node) do |bad_method| + message = format(MSG, bad_method: bad_method) + add_offense(node, location: :selector, message: message) + end end def autocorrect(node) diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_block_call.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_block_call.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_block_call.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_block_call.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_match.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_match.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_match.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_match.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_merge.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_merge.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/redundant_merge.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_merge.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_sort_block.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_sort_block.rb new file mode 100644 index 0000000000..9662b1e9d3 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_sort_block.rb @@ -0,0 +1,53 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where `sort { |a, b| a <=> b }` + # can be replaced with `sort`. + # + # @example + # # bad + # array.sort { |a, b| a <=> b } + # + # # good + # array.sort + # + class RedundantSortBlock < Cop + include SortBlock + + MSG = 'Use `sort` instead of `%s`.' + + def on_block(node) + sort_with_block?(node) do |send, var_a, var_b, body| + replaceable_body?(body, var_a, var_b) do + range = sort_range(send, node) + + add_offense( + node, + location: range, + message: message(var_a, var_b) + ) + end + end + end + + def autocorrect(node) + sort_with_block?(node) do |send, _var_a, _var_b, _body| + lambda do |corrector| + range = sort_range(send, node) + corrector.replace(range, 'sort') + end + end + end + + private + + def message(var_a, var_b) + bad_method = "sort { |#{var_a}, #{var_b}| #{var_a} <=> #{var_b} }" + format(MSG, bad_method: bad_method) + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_string_chars.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_string_chars.rb new file mode 100644 index 0000000000..12ec34ae13 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/redundant_string_chars.rb @@ -0,0 +1,137 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop checks for redundant `String#chars`. + # + # @example + # # bad + # str.chars[0..2] + # str.chars.slice(0..2) + # + # # good + # str[0..2].chars + # + # # bad + # str.chars.first + # str.chars.first(2) + # str.chars.last + # str.chars.last(2) + # + # # good + # str[0] + # str[0...2].chars + # str[-1] + # str[-2..-1].chars + # + # # bad + # str.chars.take(2) + # str.chars.drop(2) + # str.chars.length + # str.chars.size + # str.chars.empty? + # + # # good + # str[0...2].chars + # str[2..-1].chars + # str.length + # str.size + # str.empty? + # + class RedundantStringChars < Cop + include RangeHelp + + MSG = 'Use `%s` instead of `%s`.' + REPLACEABLE_METHODS = %i[[] slice first last take drop length size empty?].freeze + + def_node_matcher :redundant_chars_call?, <<~PATTERN + (send $(send _ :chars) $#replaceable_method? $...) + PATTERN + + def on_send(node) + redundant_chars_call?(node) do |receiver, method, args| + range = offense_range(receiver, node) + message = build_message(method, args) + add_offense(node, location: range, message: message) + end + end + + def autocorrect(node) + redundant_chars_call?(node) do |receiver, method, args| + range = correction_range(receiver, node) + replacement = build_good_method(method, args) + + lambda do |corrector| + corrector.replace(range, replacement) + end + end + end + + private + + def replaceable_method?(method_name) + REPLACEABLE_METHODS.include?(method_name) + end + + def offense_range(receiver, node) + range_between(receiver.loc.selector.begin_pos, node.loc.expression.end_pos) + end + + def correction_range(receiver, node) + range_between(receiver.loc.dot.begin_pos, node.loc.expression.end_pos) + end + + def build_message(method, args) + good_method = build_good_method(method, args) + bad_method = build_bad_method(method, args) + format(MSG, good_method: good_method, bad_method: bad_method) + end + + # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength + def build_good_method(method, args) + case method + when :[], :slice + "[#{build_call_args(args)}].chars" + when :first + if args.any? + "[0...#{args.first.source}].chars" + else + '[0]' + end + when :last + if args.any? + "[-#{args.first.source}..-1].chars" + else + '[-1]' + end + when :take + "[0...#{args.first.source}].chars" + when :drop + "[#{args.first.source}..-1].chars" + else + ".#{method}" + end + end + # rubocop:enable Metrics/CyclomaticComplexity, Metrics/MethodLength + + def build_bad_method(method, args) + case method + when :[] + "chars[#{build_call_args(args)}]" + else + if args.any? + "chars.#{method}(#{build_call_args(args)})" + else + "chars.#{method}" + end + end + end + + def build_call_args(call_args_node) + call_args_node.map(&:source).join(', ') + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/regexp_match.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/regexp_match.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/regexp_match.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/regexp_match.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/reverse_each.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/reverse_each.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/reverse_each.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/reverse_each.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/reverse_first.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/reverse_first.rb new file mode 100644 index 0000000000..d01c9da09f --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/reverse_first.rb @@ -0,0 +1,78 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where `reverse.first(n)` and `reverse.first` + # can be replaced by `last(n).reverse` and `last`. + # + # @example + # + # # bad + # array.reverse.first(5) + # array.reverse.first + # + # # good + # array.last(5).reverse + # array.last + # + class ReverseFirst < Cop + include RangeHelp + + MSG = 'Use `%s` instead of `%s`.' + + def_node_matcher :reverse_first_candidate?, <<~PATTERN + (send $(send _ :reverse) :first (int _)?) + PATTERN + + def on_send(node) + reverse_first_candidate?(node) do |receiver| + range = correction_range(receiver, node) + message = build_message(node) + + add_offense(node, location: range, message: message) + end + end + + def autocorrect(node) + reverse_first_candidate?(node) do |receiver| + range = correction_range(receiver, node) + replacement = build_good_method(node) + + lambda do |corrector| + corrector.replace(range, replacement) + end + end + end + + private + + def correction_range(receiver, node) + range_between(receiver.loc.selector.begin_pos, node.loc.expression.end_pos) + end + + def build_message(node) + good_method = build_good_method(node) + bad_method = build_bad_method(node) + format(MSG, good_method: good_method, bad_method: bad_method) + end + + def build_good_method(node) + if node.arguments? + "last(#{node.arguments.first.source}).reverse" + else + 'last' + end + end + + def build_bad_method(node) + if node.arguments? + "reverse.first(#{node.arguments.first.source})" + else + 'reverse.first' + end + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/size.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/size.rb new file mode 100644 index 0000000000..3bddef1f59 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/size.rb @@ -0,0 +1,75 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop is used to identify usages of `count` on an + # `Array` and `Hash` and change them to `size`. + # + # @example + # # bad + # [1, 2, 3].count + # (1..3).to_a.count + # Array[*1..3].count + # Array(1..3).count + # + # # bad + # {a: 1, b: 2, c: 3}.count + # [[:foo, :bar], [1, 2]].to_h.count + # Hash[*('a'..'z')].count + # Hash(key: :value).count + # + # # good + # [1, 2, 3].size + # (1..3).to_a.size + # Array[*1..3].size + # Array(1..3).size + # + # # good + # {a: 1, b: 2, c: 3}.size + # [[:foo, :bar], [1, 2]].to_h.size + # Hash[*('a'..'z')].size + # Hash(key: :value).size + # + # # good + # [1, 2, 3].count { |e| e > 2 } + # TODO: Add advanced detection of variables that could + # have been assigned to an array or a hash. + class Size < Cop + MSG = 'Use `size` instead of `count`.' + + def_node_matcher :array?, <<~PATTERN + { + [!nil? array_type?] + (send _ :to_a) + (send (const nil? :Array) :[] _) + (send nil? :Array _) + } + PATTERN + + def_node_matcher :hash?, <<~PATTERN + { + [!nil? hash_type?] + (send _ :to_h) + (send (const nil? :Hash) :[] _) + (send nil? :Hash _) + } + PATTERN + + def_node_matcher :count?, <<~PATTERN + (send {#array? #hash?} :count) + PATTERN + + def on_send(node) + return if node.parent&.block_type? || !count?(node) + + add_offense(node, location: :selector) + end + + def autocorrect(node) + ->(corrector) { corrector.replace(node.loc.selector, 'size') } + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/sort_reverse.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/sort_reverse.rb new file mode 100644 index 0000000000..c93d9fa3e3 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/sort_reverse.rb @@ -0,0 +1,54 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where `sort { |a, b| b <=> a }` + # can be replaced by a faster `sort.reverse`. + # + # @example + # # bad + # array.sort { |a, b| b <=> a } + # + # # good + # array.sort.reverse + # + class SortReverse < Cop + include SortBlock + + MSG = 'Use `sort.reverse` instead of `%s`.' + + def on_block(node) + sort_with_block?(node) do |send, var_a, var_b, body| + replaceable_body?(body, var_b, var_a) do + range = sort_range(send, node) + + add_offense( + node, + location: range, + message: message(var_a, var_b) + ) + end + end + end + + def autocorrect(node) + sort_with_block?(node) do |send, _var_a, _var_b, _body| + lambda do |corrector| + range = sort_range(send, node) + replacement = 'sort.reverse' + corrector.replace(range, replacement) + end + end + end + + private + + def message(var_a, var_b) + bad_method = "sort { |#{var_a}, #{var_b}| #{var_b} <=> #{var_a} }" + format(MSG, bad_method: bad_method) + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/squeeze.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/squeeze.rb new file mode 100644 index 0000000000..88f13bb024 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/squeeze.rb @@ -0,0 +1,70 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies places where `gsub(/a+/, 'a')` and `gsub!(/a+/, 'a')` + # can be replaced by `squeeze('a')` and `squeeze!('a')`. + # + # The `squeeze('a')` method is faster than `gsub(/a+/, 'a')`. + # + # @example + # + # # bad + # str.gsub(/a+/, 'a') + # str.gsub!(/a+/, 'a') + # + # # good + # str.squeeze('a') + # str.squeeze!('a') + # + class Squeeze < Cop + MSG = 'Use `%s` instead of `%s`.' + + PREFERRED_METHODS = { + gsub: :squeeze, + gsub!: :squeeze! + }.freeze + + def_node_matcher :squeeze_candidate?, <<~PATTERN + (send + $!nil? ${:gsub :gsub!} + (regexp + (str $#repeating_literal?) + (regopt)) + (str $_)) + PATTERN + + def on_send(node) + squeeze_candidate?(node) do |_, bad_method, regexp_str, replace_str| + regexp_str = regexp_str[0..-2] # delete '+' from the end + regexp_str = interpret_string_escapes(regexp_str) + return unless replace_str == regexp_str + + good_method = PREFERRED_METHODS[bad_method] + message = format(MSG, current: bad_method, prefer: good_method) + add_offense(node, location: :selector, message: message) + end + end + + def autocorrect(node) + squeeze_candidate?(node) do |receiver, bad_method, _regexp_str, replace_str| + lambda do |corrector| + good_method = PREFERRED_METHODS[bad_method] + string_literal = to_string_literal(replace_str) + + new_code = "#{receiver.source}.#{good_method}(#{string_literal})" + corrector.replace(node.source_range, new_code) + end + end + end + + private + + def repeating_literal?(regex_str) + regex_str.match?(/\A(?:#{Util::LITERAL_REGEX})\+\z/) + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/start_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/start_with.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/start_with.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/start_with.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/string_include.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/string_include.rb new file mode 100644 index 0000000000..b0be729d48 --- /dev/null +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/string_include.rb @@ -0,0 +1,57 @@ +# frozen_string_literal: true + +module RuboCop + module Cop + module Performance + # This cop identifies unnecessary use of a regex where + # `String#include?` would suffice. + # + # @example + # # bad + # 'abc'.match?(/ab/) + # /ab/.match?('abc') + # 'abc' =~ /ab/ + # /ab/ =~ 'abc' + # 'abc'.match(/ab/) + # /ab/.match('abc') + # + # # good + # 'abc'.include?('ab') + class StringInclude < Cop + MSG = 'Use `String#include?` instead of a regex match with literal-only pattern.' + + def_node_matcher :redundant_regex?, <<~PATTERN + {(send $!nil? {:match :=~ :match?} (regexp (str $#literal?) (regopt))) + (send (regexp (str $#literal?) (regopt)) {:match :match?} $str) + (match-with-lvasgn (regexp (str $#literal?) (regopt)) $_)} + PATTERN + + def on_send(node) + return unless redundant_regex?(node) + + add_offense(node) + end + alias on_match_with_lvasgn on_send + + def autocorrect(node) + redundant_regex?(node) do |receiver, regex_str| + receiver, regex_str = regex_str, receiver if receiver.is_a?(String) + regex_str = interpret_string_escapes(regex_str) + + lambda do |corrector| + new_source = receiver.source + '.include?(' + + to_string_literal(regex_str) + ')' + corrector.replace(node.source_range, new_source) + end + end + end + + private + + def literal?(regex_str) + regex_str.match?(/\A#{Util::LITERAL_REGEX}+\z/) + end + end + end + end +end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/string_replacement.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/string_replacement.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/string_replacement.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/string_replacement.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/times_map.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/times_map.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/times_map.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/times_map.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/unfreeze_string.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/unfreeze_string.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/unfreeze_string.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/unfreeze_string.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/uri_default_parser.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/uri_default_parser.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance/uri_default_parser.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance/uri_default_parser.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance_cops.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance_cops.rb similarity index 73% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance_cops.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance_cops.rb index 446357cff3..f0cc13b1ae 100644 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/cop/performance_cops.rb +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/cop/performance_cops.rb @@ -1,7 +1,10 @@ # frozen_string_literal: true require_relative 'mixin/regexp_metacharacter' +require_relative 'mixin/sort_block' +require_relative 'performance/ancestors_include' +require_relative 'performance/big_decimal_with_numeric_argument' require_relative 'performance/bind_call' require_relative 'performance/caller' require_relative 'performance/case_when_splat' @@ -18,13 +21,20 @@ require_relative 'performance/flat_map' require_relative 'performance/inefficient_hash_search' require_relative 'performance/open_struct' require_relative 'performance/range_include' +require_relative 'performance/io_readlines' require_relative 'performance/redundant_block_call' require_relative 'performance/redundant_match' require_relative 'performance/redundant_merge' +require_relative 'performance/redundant_sort_block' +require_relative 'performance/redundant_string_chars' require_relative 'performance/regexp_match' require_relative 'performance/reverse_each' +require_relative 'performance/reverse_first' require_relative 'performance/size' +require_relative 'performance/sort_reverse' +require_relative 'performance/squeeze' require_relative 'performance/start_with' +require_relative 'performance/string_include' require_relative 'performance/string_replacement' require_relative 'performance/times_map' require_relative 'performance/unfreeze_string' diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance/inject.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance/inject.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance/inject.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance/inject.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance/version.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance/version.rb similarity index 81% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance/version.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance/version.rb index afbdfb9b40..7e42f9e6eb 100644 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.6.1/lib/rubocop/performance/version.rb +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.7.0/lib/rubocop/performance/version.rb @@ -3,7 +3,7 @@ module RuboCop module Performance module Version - STRING = '1.6.1' + STRING = '1.7.0' end end end