Skip to content

Instantly share code, notes, and snippets.

@anewusername1
Created May 10, 2011 20:32
Show Gist options
  • Save anewusername1/965327 to your computer and use it in GitHub Desktop.
Save anewusername1/965327 to your computer and use it in GitHub Desktop.
Convert hash symbols to strings
my_hash.inject({}){|memo,(k,v)| memo[k.to_s] = v; memo}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment