class GemHadar

def fail(*args)

Parameters:
  • args (Array) -- the array of arguments to be formatted and passed to super
def fail(*args)
  args.map! do |a|
    a.respond_to?(:to_str) ? color(196) { a.to_str } : a
  end
  super(*args)
end