Sha256: d46a37baf31608d35bd5532073aa0b032ef9e0b7b71278a33d17e1254955a06a

Contents?: true

Size: 812 Bytes

Versions: 2

Compression:

Stored size: 812 Bytes

Contents

# encoding: utf-8

module Rubocop
  module Cop
    module Style
      # This cop checks for methods invoked via the :: operator instead
      # of the . operator (like FileUtils::rmdir instead of FileUtils.rmdir).
      class ColonMethodCall < Cop
        MSG = 'Do not use :: for method calls.'

        def on_send(node)
          receiver, _method_name, *_args = *node

          # discard methods with nil receivers and op methods(like [])
          if receiver && node.loc.dot && node.loc.dot.is?('::')
            add_offence(:convention, node.loc.dot, MSG)
            do_autocorrect(node)
          end
        end

        def autocorrect_action(node)
          @corrections << lambda do |corrector|
            corrector.replace(node.loc.dot, '.')
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.11.0 lib/rubocop/cop/style/colon_method_call.rb
rubocop-0.10.0 lib/rubocop/cop/style/colon_method_call.rb