class RuboCop::Cop::Severity

def ==(other)

Other tags:
    Api: - private
def ==(other)
  @name == if other.is_a?(Symbol)
             other
           else
             other.name
           end
end