Skip to content

Instantly share code, notes, and snippets.

@ageekymonk
Created February 19, 2012 03:21
Show Gist options
  • Save ageekymonk/1861800 to your computer and use it in GitHub Desktop.
Save ageekymonk/1861800 to your computer and use it in GitHub Desktop.
Ruby snippets
def reverse_word str
str.reverse.split(" ").map { |n| n.reverse }.join(" ")
end
reverse_word "This is really awesome"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment