aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object/conversions.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-09 23:02:50 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-09 23:02:50 +0000
commit62ddeaf0522a00d1040d19d616238fa47177ba64 (patch)
tree5c9a2ffa257a37049c35a9d990f1698bd9a7a53d /activesupport/lib/active_support/core_ext/object/conversions.rb
parent2d2fd67b51e204e77e24d1b493cebae72d8fa33d (diff)
downloadrails-62ddeaf0522a00d1040d19d616238fa47177ba64.tar.gz
rails-62ddeaf0522a00d1040d19d616238fa47177ba64.tar.bz2
rails-62ddeaf0522a00d1040d19d616238fa47177ba64.zip
Missed commit. References #10395.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8344 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object/conversions.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object/conversions.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/conversions.rb b/activesupport/lib/active_support/core_ext/object/conversions.rb
new file mode 100644
index 0000000000..ad752f0fc5
--- /dev/null
+++ b/activesupport/lib/active_support/core_ext/object/conversions.rb
@@ -0,0 +1,14 @@
+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)
+ "#{CGI.escape(key.to_s)}=#{CGI.escape(to_param.to_s)}"
+ end
+end \ No newline at end of file