Sha256: 9ccd353fa8fcd9cea9baccbbb7beb4cc61b47897f817c547090f3b2fed0638a9

Contents?: true

Size: 1.29 KB

Versions: 6787

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Performance
      # This cop identifies places where `lstrip.rstrip` can be replaced by
      # `strip`.
      #
      # @example
      #   # bad
      #   'abc'.lstrip.rstrip
      #   'abc'.rstrip.lstrip
      #
      #   # good
      #   'abc'.strip
      class LstripRstrip < Cop
        include RangeHelp

        MSG = 'Use `strip` instead of `%<methods>s`.'.freeze

        def_node_matcher :lstrip_rstrip, <<-PATTERN
          {(send $(send _ $:rstrip) $:lstrip)
           (send $(send _ $:lstrip) $:rstrip)}
        PATTERN

        def on_send(node)
          lstrip_rstrip(node) do |first_send, method_one, method_two|
            range = range_between(first_send.loc.selector.begin_pos,
                                  node.source_range.end_pos)
            add_offense(node,
                        location: range,
                        message: format(MSG,
                                        methods: "#{method_one}.#{method_two}"))
          end
        end

        def autocorrect(node)
          range = range_between(node.receiver.loc.selector.begin_pos,
                                node.source_range.end_pos)

          ->(corrector) { corrector.replace(range, 'strip') }
        end
      end
    end
  end
end

Version data entries

6,787 entries across 6,781 versions & 26 rubygems

Version Path
rubocop-0.64.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.63.1 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.63.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.62.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.61.1 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.61.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-performance-0.0.1 lib/rubocop/cop/performance/lstrip_rstrip.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/performance/lstrip_rstrip.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/performance/lstrip_rstrip.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/performance/lstrip_rstrip.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.60.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.59.2 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.59.1 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.59.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.58.2 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-performance-0.0.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.58.1 lib/rubocop/cop/performance/lstrip_rstrip.rb
rubocop-0.58.0 lib/rubocop/cop/performance/lstrip_rstrip.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/performance/lstrip_rstrip.rb