Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/core_ext/hash.rb
Instance Method Summary collapse
Instance Method Details
#to_uri_query ⇒ Object
2 3 4 |
# File 'lib/core_ext/hash.rb', line 2 def to_uri_query return self.map{|key, value| "#{key}=#{URI.encode_www_form_component(value)}" if value}.select{|value| value if value}.join("&") end |