class RuboCop::Cop::Severity

def ==(other)

def ==(other)
  @name == if other.is_a?(Symbol)
             other
           else
             other.name
           end
end