module Ccp::Utils::Colorize::Bar

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
danger(*args)
Alias for: red
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
info(*args)
Alias for: blue
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
success(*args)
Alias for: green
warning(*args)
Alias for: yellow
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