Sha256: eb7b2d78419629f2d6a8825553af50392ba37f65a6102fb444649882ddb163cf

Contents?: true

Size: 763 Bytes

Versions: 6831

Compression:

Stored size: 763 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for the presence of `method_missing` without
      # falling back on `super`.
      #
      # @example
      #   #bad
      #   def method_missing(name, *args)
      #     # ...
      #   end
      #
      #   #good
      #
      #   def method_missing(name, *args)
      #     # ...
      #     super
      #   end
      class MethodMissingSuper < Cop
        MSG = 'When using `method_missing`, fall back on `super`.'.freeze

        def on_def(node)
          return unless node.method?(:method_missing)
          return if node.descendants.any?(&:zsuper_type?)

          add_offense(node)
        end
        alias on_defs on_def
      end
    end
  end
end

Version data entries

6,831 entries across 6,825 versions & 26 rubygems

Version Path
ory-client-0.0.1.alpha111 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha110 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha109 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
avalara_sdk-2.4.26 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha108 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-oathkeeper-client-0.38.23.beta1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-oathkeeper-client-0.38.22.beta1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha107 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-hydra-client-1.11.7 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha106 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-hydra-client-1.11.6 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-keto-client-0.8.0.alpha1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha105 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha104 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha103 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-hydra-client-1.11.5 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha101 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha100 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-hydra-client-1.11.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb
ory-client-0.0.1.alpha99 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/cop/style/method_missing_super.rb