module Guard::UI
def warning(message, options = { })
(**options)-
reset(Boolean) -- whether to clean the output before
Parameters:
-
message(String) -- the message to show
def warning(message, options = { }) unless ENV['GUARD_ENV'] == 'test' reset_line if options[:reset] STDERR.puts color('WARNING: ', :yellow) + message end end