class GemHadar

def warn(*msgs)

Parameters:
  • msgs (Array) -- the array of message strings to display
def warn(*msgs)
  msgs.map! { |m| color(208) { m } }
  super(*msgs, uplevel: 1)
end