Class: Guard::Reporter
- Inherits:
-
Object
- Object
- Guard::Reporter
- Defined in:
- lib/guard/reporter.rb
Overview
Send a report to the Guard UI The Reporter is a wrapper arround guard UI because it is currently subject to change.
Instance Method Summary collapse
- #announce(message) ⇒ Object
- #failure(message) ⇒ Object
- #success(message) ⇒ Object
- #unstable(message) ⇒ Object
Instance Method Details
#announce(message) ⇒ Object
15 16 17 |
# File 'lib/guard/reporter.rb', line 15 def announce() UI.info() end |
#failure(message) ⇒ Object
9 10 11 |
# File 'lib/guard/reporter.rb', line 9 def failure() UI.error() end |
#success(message) ⇒ Object
6 7 8 |
# File 'lib/guard/reporter.rb', line 6 def success() UI.info() end |
#unstable(message) ⇒ Object
12 13 14 |
# File 'lib/guard/reporter.rb', line 12 def unstable() UI.info() end |