class Aruba::Colorizer

Simple colorizer class. Only supports the color cyan

def cyan(string)

def cyan(string)
  if self.class.coloring?
    "\e[36m#{string}\e[0m"
  else
    string
  end
end