Class: RuboCop::Cop::Performance::StringInclude
- Inherits:
-
Base
- Object
- Base
- RuboCop::Cop::Performance::StringInclude
- Extended by:
- AutoCorrector
- Defined in:
- lib/rubocop/cop/performance/string_include.rb
Overview
Identifies unnecessary use of a regex where `String#include?` would suffice.
Constant Summary collapse
- MSG =
'Use `%<negation>sString#include?` instead of a regex match with literal-only pattern.'- RESTRICT_ON_SEND =
%i[match =~ !~ match?].freeze
Instance Method Summary collapse
- #on_send(node) ⇒ Object (also: #on_match_with_lvasgn)
Instance Method Details
#on_send(node) ⇒ Object Also known as: on_match_with_lvasgn
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/rubocop/cop/performance/string_include.rb', line 34 def on_send(node) return unless (receiver, regex_str = redundant_regex?(node)) negation = node.send_type? && node.method?(:!~) = format(MSG, negation: ('!' if negation)) add_offense(node, message: ) do |corrector| receiver, regex_str = regex_str, receiver if receiver.is_a?(String) regex_str = interpret_string_escapes(regex_str) new_source = "#{'!' if negation}#{receiver.source}.include?(#{to_string_literal(regex_str)})" corrector.replace(node.source_range, new_source) end end |