Class: Object

Inherits:
BasicObject
Defined in:
lib/openstack/core_ext/to_query.rb

Instance Method Summary collapse

Instance Method Details

#to_paramObject

Alias of to_s.



5
6
7
# File 'lib/openstack/core_ext/to_query.rb', line 5

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.



11
12
13
# File 'lib/openstack/core_ext/to_query.rb', line 11

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