Skip to content

Instantly share code, notes, and snippets.

@patmaddox
Created April 21, 2011 01:25
Show Gist options
  • Select an option

  • Save patmaddox/933463 to your computer and use it in GitHub Desktop.

Select an option

Save patmaddox/933463 to your computer and use it in GitHub Desktop.
class Hash
def to_cgi_params
map {|pair| [pair.first, CGI.escape(pair.last)].join('=')}.join('&')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment