Class: Array
- Defined in:
- lib/addressable/rest/to_query.rb,
lib/addressable/rest/to_query.rb
Instance Method Summary collapse
-
#to_param ⇒ Object
Calls
to_param
on all its elements and joins the result with slashes. -
#to_query(key) ⇒ Object
Converts an array into a string suitable for use as a URL query string, using the given
key
as the param name.
Instance Method Details
#to_param ⇒ Object
Calls to_param
on all its elements and joins the result with slashes. This is used by url_for
in Action Pack.
30 31 32 |
# File 'lib/addressable/rest/to_query.rb', line 30 def to_param collect { |e| e.to_param }.join '/' end |
#to_query(key) ⇒ Object
Converts an array into a string suitable for use as a URL query string, using the given key
as the param name.
['Rails', 'coding'].to_query('hobbies') # => "hobbies%5B%5D=Rails&hobbies%5B%5D=coding"
74 75 76 77 |
# File 'lib/addressable/rest/to_query.rb', line 74 def to_query(key) prefix = "#{key}[]" collect { |value| value.to_query(prefix) }.join '&' end |