module Guard::CoffeeScript::Formatter

The Guard::CoffeeScript formatter collects console and system notification methods and enhances them with some color information.

Public Class Methods

debug(message, options = {}) click to toggle source

Print a debug message to the console.

@param [String] message the message to print @param [Hash] options the output options @option options [Boolean] :reset reset the UI

# File lib/guard/coffeescript/formatter.rb, line 25
def debug(message, options = {})
  Compat::UI.debug(message, options)
end
error(message, options = {}) click to toggle source

Print a red error message to the console.

@param [String] message the message to print @param [Hash] options the output options @option options [Boolean] :reset reset the UI

# File lib/guard/coffeescript/formatter.rb, line 35
def error(message, options = {})
  Compat::UI.error(color(message, ';31'), options)
end
info(message, options = {}) click to toggle source

Print an info message to the console.

@param [String] message the message to print @param [Hash] options the output options @option options [Boolean] :reset reset the UI

# File lib/guard/coffeescript/formatter.rb, line 15
def info(message, options = {})
  Compat::UI.info(message, options)
end
notify(message, options = {}) click to toggle source

Outputs a system notification.

@param [String] message the message to print @param [Hash] options the output options @option options [Symbol, String] :image the image to use, either :failed, :pending or :success, or an image path @option options [String] :title the title of the system notification

# File lib/guard/coffeescript/formatter.rb, line 57
def notify(message, options = {})
  Compat::UI.notify(message, options)
end
success(message, options = {}) click to toggle source

Print a green success message to the console.

@param [String] message the message to print @param [Hash] options the output options @option options [Boolean] :reset reset the UI

# File lib/guard/coffeescript/formatter.rb, line 45
def success(message, options = {})
  stamped_message = "#{Time.now.strftime('%r')} #{message}"
  Compat::UI.info(color(stamped_message, ';32'), options)
end

Private Class Methods

color(text, color_code) click to toggle source

Print a info message to the console.

@param [String] text the text to colorize @param [String] color_code the color code

# File lib/guard/coffeescript/formatter.rb, line 68
def color(text, color_code)
  Compat::UI.send(:color_enabled?) ? "\e[0#{ color_code }m#{ text }\e[0m" : text
end