a318e03ad1
So the debug mode is a little more useful... Also added timestamp in debug print
71 lines
1.7 KiB
Ruby
71 lines
1.7 KiB
Ruby
module Guard
|
|
module UI
|
|
class << self
|
|
|
|
def info(message, options = {})
|
|
unless ENV["GUARD_ENV"] == "test"
|
|
reset_line if options[:reset]
|
|
puts reset_color(message) if message != ''
|
|
end
|
|
end
|
|
|
|
def error(message, options = {})
|
|
unless ENV["GUARD_ENV"] == "test"
|
|
reset_line if options[:reset]
|
|
puts "#{color('ERROR:', ';31')} #{message}"
|
|
end
|
|
end
|
|
|
|
def deprecation(message, options = {})
|
|
unless ENV["GUARD_ENV"] == "test"
|
|
reset_line if options[:reset]
|
|
puts "#{color('DEPRECATION:', ';31')} #{message}"
|
|
end
|
|
end
|
|
|
|
def debug(message, options = {})
|
|
unless ENV["GUARD_ENV"] == "test"
|
|
reset_line if options[:reset]
|
|
puts "DEBUG (#{Time.now.strftime('%T')}): #{message}" if ::Guard.options && ::Guard.options[:debug]
|
|
end
|
|
end
|
|
|
|
def reset_line
|
|
print(color_enabled? ? "\r\e[0m" : "\r\n")
|
|
end
|
|
|
|
def clear
|
|
system("clear;")
|
|
end
|
|
|
|
private
|
|
|
|
def reset_color(text)
|
|
color(text, "")
|
|
end
|
|
|
|
def color(text, color_code)
|
|
color_enabled? ? "\e[0#{color_code}m#{text}\e[0m" : text
|
|
end
|
|
|
|
def color_enabled?
|
|
@color_enabled ||= if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
|
|
unless ENV['ANSICON']
|
|
begin
|
|
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
|
require 'Win32/Console/ANSI'
|
|
rescue LoadError
|
|
@color_enabled = false
|
|
info "You must 'gem install win32console' to use color on Windows"
|
|
false
|
|
end
|
|
end
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|