Method: RuboCop::Cop::Style::MethodDefParentheses#on_def

Defined in:
lib/rubocop/cop/style/method_def_parentheses.rb

#on_def(node) ⇒ Object Also known as: on_defs

[View source]

105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/rubocop/cop/style/method_def_parentheses.rb', line 105

def on_def(node)
  return if forced_parentheses?(node)

  args = node.arguments

  if require_parentheses?(args)
    if arguments_without_parentheses?(node)
      missing_parentheses(node)
    else
      correct_style_detected
    end
  elsif parentheses?(args)
    unwanted_parentheses(args)
  else
    correct_style_detected
  end
end