Skip to content

Instantly share code, notes, and snippets.

@Nosfheratu
Created September 8, 2013 18:10
Show Gist options
  • Save Nosfheratu/6487074 to your computer and use it in GitHub Desktop.
Save Nosfheratu/6487074 to your computer and use it in GitHub Desktop.
Usefull Ruby code snippets
# capitalize each word of a string
'some string'.split(' ').map {|w| w.capitalize }.join(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment