Method: Common::Color#printf_blue
- Defined in:
- lib/common/color.rb
#printf_blue(text, bold = false, stdout = STDOUT) ⇒ Object
Print the text in blue.
89 90 91 |
# File 'lib/common/color.rb', line 89 def printf_blue(text, bold=false, stdout = STDOUT) printf_color(text, "1;34", bold, stdout) end |