module Ccp::Utils::Colorize::Bar
Public Instance Methods
blue(*args)
click to toggle source
# File lib/ccp/utils/colorize.rb, line 135 def blue (*args) Progress.new(:blue , *args).to_s; end
Also aliased as: info
green(*args)
click to toggle source
# File lib/ccp/utils/colorize.rb, line 134 def green (*args) Progress.new(:green , *args).to_s; end
Also aliased as: success
red(*args)
click to toggle source
# File lib/ccp/utils/colorize.rb, line 137 def red (*args) Progress.new(:red , *args).to_s; end
Also aliased as: danger
yellow(*args)
click to toggle source
# File lib/ccp/utils/colorize.rb, line 136 def yellow(*args) Progress.new(:yellow, *args).to_s; end
Also aliased as: warning