Skip to content

Instantly share code, notes, and snippets.

@DouglasAllen
Last active August 29, 2015 14:12
Show Gist options
  • Save DouglasAllen/4f428545601a4c1e9665 to your computer and use it in GitHub Desktop.
Save DouglasAllen/4f428545601a4c1e9665 to your computer and use it in GitHub Desktop.
def titleize(str);str.split(" ").map {|w| w.capitalize}.join(" ");end
titleize("x-men: the sky is the limit")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment