Skip to content

Instantly share code, notes, and snippets.

@usmanity
Created August 1, 2013 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save usmanity/6127502 to your computer and use it in GitHub Desktop.
Save usmanity/6127502 to your computer and use it in GitHub Desktop.
# not by me
class String
def colorize(color_code)
"\e[#{color_code}m#{self}\e[0m"
end
def red
colorize(31)
end
def blue
colorize(34)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment