Skip to content

Instantly share code, notes, and snippets.

@reinh
Created March 9, 2009 20:41
Show Gist options
  • Save reinh/76466 to your computer and use it in GitHub Desktop.
Save reinh/76466 to your computer and use it in GitHub Desktop.
class Hash
def to_query_string
map { |k, v|
"#{URI.esacape(k)}=#{URI.escape(v)}"
}.join('&')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment