class Guard::Reporter
Send a report to the Guard UI The Reporter is a wrapper arround guard UI because
it is currently subject to change.
Public Instance Methods
announce(message)
click to toggle source
# File lib/guard/reporter.rb, line 15 def announce(message) UI.info(message) end
failure(message)
click to toggle source
# File lib/guard/reporter.rb, line 9 def failure(message) UI.error(message) end
success(message)
click to toggle source
# File lib/guard/reporter.rb, line 6 def success(message) UI.info(message) end
unstable(message)
click to toggle source
# File lib/guard/reporter.rb, line 12 def unstable(message) UI.info(message) end