Module: Ccp::Utils::Colorize::Bar
Defined Under Namespace
Classes: Progress
Instance Method Summary collapse
- #blue(*args) ⇒ Object (also: #info)
- #green(*args) ⇒ Object (also: #success)
- #red(*args) ⇒ Object (also: #danger)
- #yellow(*args) ⇒ Object (also: #warning)
Instance Method Details
#blue(*args) ⇒ Object Also known as: info
122 |
# File 'lib/ccp/utils/colorize.rb', line 122 def blue (*args) Progress.new(:blue , *args).to_s; end |
#green(*args) ⇒ Object Also known as: success
121 |
# File 'lib/ccp/utils/colorize.rb', line 121 def green (*args) Progress.new(:green , *args).to_s; end |