cute.
# File lib/redgreen.rb, line 10 def self.color(color) "\e[#{COLORS[color.to_sym]}m" end
# File lib/redgreen.rb, line 7 def self.method_missing(color_name, *args) color(color_name) + args.first + color(:clear) end