class Guard::Entangle::Formatter

The formatter handles providing output to the user.

Public Instance Methods

colorize(text, color_code) click to toggle source

Output raw string, as Guard UI adds [#XXXXXXX] memory address to string

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

# File lib/guard/entangle/formatter.rb, line 65
def colorize(text, color_code)
    return "\e[#{color_code}m#{text}\e[0m"
end
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/entangle/formatter.rb, line 25
def debug(message, options = {})
  ::Guard::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/entangle/formatter.rb, line 35
def error(message, options = {})
  ::Guard::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/entangle/formatter.rb, line 15
def info(message, options = {})
  ::Guard::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/entangle/formatter.rb, line 56
def notify(message, options = {})
  ::Guard::Notifier.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/entangle/formatter.rb, line 45
def success(message, options = {})
  ::Guard::UI.info(color(message, ';32'), options)
end

Private Instance 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/entangle/formatter.rb, line 76
def color(text, color_code)
  ::Guard::UI.send(:color_enabled?) ? "\e[0#{ color_code }m#{ text }\e[0m" : text
end