Skip to content

Instantly share code, notes, and snippets.

@matstc
Created October 21, 2014 13:32
Show Gist options
  • Save matstc/14943ebdd7d2afabb107 to your computer and use it in GitHub Desktop.
Save matstc/14943ebdd7d2afabb107 to your computer and use it in GitHub Desktop.
Example with temporary variables
def title_case string
words = string.split " "
capitalized_words = words.map {|w| w.capitalize}
title = capitalized_words.join " "
return title
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment