module Gearship::Logger

Public Class Methods

error(text) click to toggle source
# File lib/gearship/logger.rb, line 12
def error(text)
  puts text.color(:red).bright
end
info(text) click to toggle source
# File lib/gearship/logger.rb, line 4
def info(text)
  puts text.bright
end
success(text) click to toggle source
# File lib/gearship/logger.rb, line 8
def success(text)
  puts text.color(:green).bright
end