Sha256: a0196a9c959526c01e9247ba33d3def1d520172b45bcac79e12b2184c8e6048f
Contents?: true
Size: 462 Bytes
Versions: 151
Compression:
Stored size: 462 Bytes
Contents
class Object # Alias of <tt>to_s</tt>. def to_param to_s end # Converts an object into a string suitable for use as a URL query string, using the given <tt>key</tt> as the # param name. # # Note: This method is defined as a default implementation for all Objects for Hash#to_query to work. def to_query(key) require 'cgi' unless defined?(CGI) && defined?(CGI::escape) "#{CGI.escape(key.to_s)}=#{CGI.escape(to_param.to_s)}" end end
Version data entries
151 entries across 120 versions & 15 rubygems