Sha256: 3f31c445d43165944ee460980e72437212d0c6c4b746e11f1f0f57c814afb26e

Contents?: true

Size: 1.05 KB

Versions: 60

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for the presence of `method_missing` without also
      # defining `respond_to_missing?`.
      #
      # @example
      #   #bad
      #   def method_missing(name, *args)
      #     # ...
      #   end
      #
      #   #good
      #   def respond_to_missing?(name, include_private)
      #     # ...
      #   end
      #
      #   def method_missing(name, *args)
      #     # ...
      #   end
      #
      class MissingRespondToMissing < Cop
        MSG =
          'When using `method_missing`, define `respond_to_missing?`.'

        def on_def(node)
          return unless node.method?(:method_missing)
          return if implements_respond_to_missing?(node)

          add_offense(node)
        end
        alias on_defs on_def

        private

        def implements_respond_to_missing?(node)
          node.parent.each_child_node(node.type).any? do |sibling|
            sibling.method?(:respond_to_missing?)
          end
        end
      end
    end
  end
end

Version data entries

60 entries across 41 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.88.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.87.1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.87.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.86.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/style/missing_respond_to_missing.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/style/missing_respond_to_missing.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.85.1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.85.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.84.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.83.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.82.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.81.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.80.1 lib/rubocop/cop/style/missing_respond_to_missing.rb
rubocop-0.80.0 lib/rubocop/cop/style/missing_respond_to_missing.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/missing_respond_to_missing.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/style/missing_respond_to_missing.rb