Skip to content

Instantly share code, notes, and snippets.

@cesarfigueroa
Last active December 16, 2015 06:39
Show Gist options
  • Save cesarfigueroa/5393196 to your computer and use it in GitHub Desktop.
Save cesarfigueroa/5393196 to your computer and use it in GitHub Desktop.
Basic titleize function. Useful for copy-pasting from poorly formatted documents.
class String
def titleize
self.downcase.split.map(&:capitalize).join(' ')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment