Method: Common::Color#printf_red
- Defined in:
- lib/common/color.rb
#printf_red(text, bold = false, stdout = STDOUT) ⇒ Object
Print the text in red.
55 56 57 |
# File 'lib/common/color.rb', line 55 def printf_red(text, bold=false, stdout = STDOUT) printf_color(text, 31, bold, stdout) end |