= private = protected
to_query(key)
Converts an object into a string suitable for use as a URL query string, using the given key as the param name.
# File activesupport/lib/active_support/core_ext/object/to_query.rb, line 13 def to_query(key) "#{CGI.escape(key.to_param)}=#{CGI.escape(to_param.to_s)}" end