Sha256: 714ab91651cfe4dc5b6a7366e0ea0f88d227508456427af85e566c91b6c08404

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8

module Rubocop
  module Cop
    module Style
      # This cop checks for unwanted parentheses in parameterless method calls.
      class MethodCallParentheses < Cop
        MSG = 'Do not use parentheses for method calls with no arguments.'

        def on_send(node)
          _receiver, method_name, *args = *node

          # methods starting with a capital letter should be skipped
          return if method_name =~ /\A[A-Z]/

          add_offense(node, :begin) if args.empty? && node.loc.begin
        end

        def autocorrect(node)
          # Bail out if the call is going to be auto-corrected by EmptyLiteral.
          if config.for_cop('EmptyLiteral')['Enabled'] &&
              [EmptyLiteral::HASH_NODE,
               EmptyLiteral::ARRAY_NODE,
               EmptyLiteral::STR_NODE].include?(node)
            return
          end
          @corrections << lambda do |corrector|
            corrector.remove(node.loc.begin)
            corrector.remove(node.loc.end)
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 lib/rubocop/cop/style/method_call_parentheses.rb
rubocop-0.21.0 lib/rubocop/cop/style/method_call_parentheses.rb
rubocop-0.20.1 lib/rubocop/cop/style/method_call_parentheses.rb
rubocop-0.20.0 lib/rubocop/cop/style/method_call_parentheses.rb
rubocop-0.19.1 lib/rubocop/cop/style/method_call_parentheses.rb
rubocop-0.19.0 lib/rubocop/cop/style/method_call_parentheses.rb