Module: Helmsnap::Console
Instance Method Summary collapse
- #error(stream, msg) ⇒ Object
- #info(stream, msg) ⇒ Object
- #print(stream, msg) ⇒ Object
- #warning(stream, msg) ⇒ Object
Instance Method Details
#error(stream, msg) ⇒ Object
20 21 22 23 |
# File 'lib/helmsnap/console.rb', line 20 def error(stream, msg) msg = ColorizedString[msg].colorize(:light_red) stream.puts(msg) end |
#info(stream, msg) ⇒ Object
10 11 12 13 |
# File 'lib/helmsnap/console.rb', line 10 def info(stream, msg) msg = ColorizedString[msg].colorize(:light_yellow) stream.puts(msg) end |
#print(stream, msg) ⇒ Object
6 7 8 |
# File 'lib/helmsnap/console.rb', line 6 def print(stream, msg) stream.print(msg) end |
#warning(stream, msg) ⇒ Object
15 16 17 18 |
# File 'lib/helmsnap/console.rb', line 15 def warning(stream, msg) msg = ColorizedString["WARNING: #{msg}"].colorize(:light_blue) stream.puts(msg) end |