class RuboCop::Cop::Layout::EmptyLinesAroundMethodBody

Checks if empty lines exist around the bodies of methods.

@example

# good

def foo
  # ...
end

# bad

def bar

  # ...

end