Sha256: c8fb04f03973e53b99c35e04997f3842c97ea7f9dd9c45dcc3f79641baf7c88a

Contents?: true

Size: 1.27 KB

Versions: 5

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop identifies places where `lstrip.rstrip` can be replaced by
      # `strip`.
      #
      # @example
      #   # bad
      #   'abc'.lstrip.rstrip
      #   'abc'.rstrip.lstrip
      #
      #   # good
      #   'abc'.strip
      class Strip < 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

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-0.68.1 lib/rubocop/cop/style/strip.rb
rubocop-0.68.0 lib/rubocop/cop/style/strip.rb
rubocop-0.67.2 lib/rubocop/cop/style/strip.rb
rubocop-0.67.1 lib/rubocop/cop/style/strip.rb
rubocop-0.67.0 lib/rubocop/cop/style/strip.rb