Module: PutsUtils::PutsColor
- Defined in:
- lib/puts_utils/puts_color.rb
Constant Summary collapse
- COLOR_CODES =
{ red: 31, green: 32, yellow: 33, blue: 34, purple: 35, cyan: 36, gray: 37 }.freeze
Instance Method Summary collapse
Instance Method Details
#puts_color(string, color = :gray) ⇒ Object
15 16 17 |
# File 'lib/puts_utils/puts_color.rb', line 15 def puts_color(string, color = :gray) puts "\e[#{COLOR_CODES[color]}m#{string}\e[0m" end |