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