aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-05-31 23:25:36 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-05-31 23:25:36 +0000
commit408fe5facc482f84194bbe79865a26b57b2cc883 (patch)
tree52164d53e521712f51e99238af349de0885f9985 /activesupport/CHANGELOG
parentd31830cf9cc863ed2f98c2d4cb90cf0e5d93e73e (diff)
downloadrails-408fe5facc482f84194bbe79865a26b57b2cc883.tar.gz
rails-408fe5facc482f84194bbe79865a26b57b2cc883.tar.bz2
rails-408fe5facc482f84194bbe79865a26b57b2cc883.zip
Added Array#to_s(:db) that'll produce a comma-separated list of ids [DHH] Split Grouping into its own file
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4387 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 7b98b2dbed..47d1c3ba46 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Added Array#to_s(:db) that'll produce a comma-separated list of ids [DHH]. Example:
+
+ Purchase.find(:all, :conditions => [ "product_id IN (?)", shop.products.to_s(:db) ])
+
* Normalize classify's argument to a String so that it plays nice with Symbols. [Marcel Molina Jr.]
* Strip out leading schema name in classify. References #5139. [schoenm@earthlink.net]