class RuboCop::Cop::Style::EndBlock

Checks for END blocks.

@example

# bad
END { puts 'Goodbye!' }

# good
at_exit { puts 'Goodbye!' }