class RuboCop::Cop::Style::BlockComments

Looks for uses of block comments (=begin…=end).

@example

# bad
=begin
Multiple lines
of comments...
=end

# good
# Multiple lines
# of comments...