class RuboCop::Cop::Layout::EmptyLinesAroundBeginBody

Checks if empty lines exist around the bodies of begin-end blocks.

@example

# bad
begin

  # ...

end

# good
begin
  # ...
end