class RuboCop::Cop::Style::EndlessMethod

def on_def(node)

def on_def(node)
  if style == :disallow
    handle_disallow_style(node)
  else
    handle_allow_style(node)
  end
end