codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/colon_method_definition.md

Summary

Maintainability
Test Coverage
This cop checks for class methods that are defined using the `::`
operator instead of the `.` operator.

### Example:
    # bad
    class Foo
      def self::bar
      end
    end

    # good
    class Foo
      def self.bar
      end
    end