Sha256: 9867b707c0e461d91856af4733d5cb3f929f8b3cce0f522a4f3cb180eb5a371e

Contents?: true

Size: 1.6 KB

Versions: 18

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for uses of the class/module name instead of
      # self, when defining class/module methods.
      #
      # @example
      #   # bad
      #   class SomeClass
      #     def SomeClass.class_method
      #       ...
      #     end
      #   end
      #
      #   # good
      #   class SomeClass
      #     def self.class_method
      #       ...
      #     end
      #   end
      class ClassMethods < Cop
        MSG = 'Use `self.%s` instead of `%s.%s`.'.freeze

        def on_class(node)
          name, _superclass, body = *node
          check(name, body)
        end

        def on_module(node)
          name, body = *node
          check(name, body)
        end

        private

        def check(name, node)
          return unless node

          if node.defs_type?
            check_defs(name, node)
          elsif node.begin_type?
            node.each_child_node(:defs) { |n| check_defs(name, n) }
          end
        end

        def check_defs(name, node)
          definee, method_name, _args, _body = *node
          # check if the class/module name matches the definee for the defs node
          return unless name == definee

          _, class_name = *definee
          add_offense(definee, :name, message(class_name, method_name))
        end

        def message(class_name, method_name)
          format(MSG, method_name, class_name, method_name)
        end

        def autocorrect(node)
          ->(corrector) { corrector.replace(node.loc.name, 'self') }
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/class_methods.rb
rubocop-0.50.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.49.1 lib/rubocop/cop/style/class_methods.rb
rubocop-0.49.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.48.1 lib/rubocop/cop/style/class_methods.rb
rubocop-0.48.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.47.1 lib/rubocop/cop/style/class_methods.rb
rubocop-0.47.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.46.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.45.0 lib/rubocop/cop/style/class_methods.rb
rubocop-0.44.1 lib/rubocop/cop/style/class_methods.rb
rubocop-0.44.0 lib/rubocop/cop/style/class_methods.rb