class Aruba::Colorizer
Simple colorizer class. Only supports the color cyan
Attributes
Public Instance Methods
Source
# File lib/aruba/colorizer.rb, line 11 def cyan(string) if self.class.coloring? "\e[36m#{string}\e[0m" else string end end
Simple colorizer class. Only supports the color cyan
# File lib/aruba/colorizer.rb, line 11 def cyan(string) if self.class.coloring? "\e[36m#{string}\e[0m" else string end end