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

Version Path
activesupport-2.3.17 lib/active_support/core_ext/object/conversions.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
activesupport_csi-2.3.5.p7 lib/active_support/core_ext/object/conversions.rb
activesupport_csi-2.3.5.p6 lib/active_support/core_ext/object/conversions.rb
activesupport-2.3.16 lib/active_support/core_ext/object/conversions.rb
activesupport-2.3.15 lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.6.4 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.6.3 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.6.2 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.6.1 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.6.0 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.5.9 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/core_ext/object/conversions.rb
abiquo-etk-0.5.8 vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/activesupport-2.3.12/lib/active_support/core_ext/object/conversions.rb
activesupport-2.3.14 lib/active_support/core_ext/object/conversions.rb
kajam-1.0.3.rc2 vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb
activesupport-2.3.12 lib/active_support/core_ext/object/conversions.rb
radiant-1.0.0.rc2 vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb