How to make color for a string in Ruby? For example, define a method make_color,
def make_color(str, :red) end Then the output will return the String str with red color.
I wonder whether there is a lib in ruby can help me do that?
ps: I prefer not using gem package.