Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/sorenson/services/core_ext/object.rb
Instance Method Summary collapse
-
#to_param ⇒ Object
Alias of
to_s
. -
#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.
Instance Method Details
#to_param ⇒ Object
Alias of to_s
.
12 13 14 |
# File 'lib/sorenson/services/core_ext/object.rb', line 12 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 9 |
# File 'lib/sorenson/services/core_ext/object.rb', line 6 def to_query(key) require 'cgi' unless defined?(CGI) && defined?(CGI::escape) "#{CGI.escape(key.to_s).gsub(/%(5B|5D)/n) { [$1].pack('H*') }}=#{CGI.escape(to_param.to_s)}" end |