Sha256: 5524ed31ddc2e0b424954fb0691a5d96e55cb2d4d8f833fd071445884e4585ba

Contents?: true

Size: 1.31 KB

Versions: 30

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module InternalAffairs
      # Checks that method names are checked using `method?` method.
      #
      # @example
      #   # bad
      #   node.method_name == :do_something
      #
      #   # good
      #   node.method?(:do_something)
      #
      class MethodNameEqual < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Use `method?(%<method_name>s)` instead of ' \
              '`method_name == %<method_name>s`.'
        RESTRICT_ON_SEND = %i[==].freeze

        def_node_matcher :method_name?, <<~PATTERN
          (send
            $(send
              (...) :method_name) :==
            $...)
        PATTERN

        def on_send(node)
          method_name?(node) do |method_name_node, method_name_arg|
            message = format(MSG, method_name: method_name_arg.first.source)

            range = range(method_name_node, node)

            add_offense(range, message: message) do |corrector|
              corrector.replace(range, "method?(#{method_name_arg.first.source})")
            end
          end
        end

        private

        def range(method_name_node, node)
          range_between(
            method_name_node.loc.selector.begin_pos, node.source_range.end_pos
          )
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.10.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.9.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.9.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.8.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.8.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.7.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.6.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.6.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.5.2 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.5.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.5.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.4.2 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.4.1 lib/rubocop/cop/internal_affairs/method_name_equal.rb
rubocop-1.4.0 lib/rubocop/cop/internal_affairs/method_name_equal.rb