Module: OutputHelpers
Defined Under Namespace
Modules: Output
Instance Method Summary collapse
Instance Method Details
#alert(text) ⇒ Object
10 11 12 |
# File 'lib/dmg/output_helpers.rb', line 10 def alert(text) puts Output.red(text) end |
#debug(text) ⇒ Object
6 7 8 |
# File 'lib/dmg/output_helpers.rb', line 6 def debug(text) puts Output.grey(text) end |
#info(text) ⇒ Object
2 3 4 |
# File 'lib/dmg/output_helpers.rb', line 2 def info(text) puts Output.green(text) end |