class RuboCop::Cop::Layout::SpaceAfterMethodName

Checks for space between a method name and a left parenthesis in defs.

@example

# bad
def func (x) end
def method= (y) end

# good
def func(x) end
def method=(y) end