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