Class: Object

Inherits:
BasicObject
Defined in:
lib/ext_core/query.rb,
lib/ext_core/object.rb

Instance Method Summary collapse

Instance Method Details

#to_paramObject

Alias of to_s.



3
4
5
# File 'lib/ext_core/query.rb', line 3

def to_param
  to_s
end

#to_query(key) ⇒ Object

Converts an object into a string suitable for use as a URL query string, using the given key as the param name.

Note: This method is defined as a default implementation for all Objects for Hash#to_query to work.



6
7
8
# File 'lib/ext_core/object.rb', line 6

def to_query(key)
  "#{CGI.escape(key.to_param)}=#{CGI.escape(to_param.to_s)}"
end