Class: Guard::Reporter

Inherits:
Object
  • Object
show all
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

Instance Method Details

#announce(message) ⇒ Object



15
16
17
# File 'lib/guard/reporter.rb', line 15

def announce(message)
  UI.info(message)
end

#failure(message) ⇒ Object



9
10
11
# File 'lib/guard/reporter.rb', line 9

def failure(message)
  UI.error(message)
end

#success(message) ⇒ Object



6
7
8
# File 'lib/guard/reporter.rb', line 6

def success(message)
  UI.info(message)
end

#unstable(message) ⇒ Object



12
13
14
# File 'lib/guard/reporter.rb', line 12

def unstable(message)
  UI.info(message)
end