diff options
author | Marcel Molina <marcel@vernix.org> | 2006-05-21 15:11:00 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-05-21 15:11:00 +0000 |
commit | 422cba934c218c7725c115615d942344aa067aba (patch) | |
tree | c82326373437e4804ab9dc716a75b9d0d082e510 /activesupport/CHANGELOG | |
parent | 04fb7c30e36432602c849409c020da8f5bcfe9aa (diff) | |
download | rails-422cba934c218c7725c115615d942344aa067aba.tar.gz rails-422cba934c218c7725c115615d942344aa067aba.tar.bz2 rails-422cba934c218c7725c115615d942344aa067aba.zip |
Strip out leading schema name in classify. References #5139. [schoenm@earthlink.net]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4350 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r-- | activesupport/CHANGELOG | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 59fc6c27ed..f796774f0f 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,6 +1,9 @@ *SVN* +* Strip out leading schema name in classify. References #5139. [schoenm@earthlink.net] + * Remove Enumerable#first_match since break(value) handles the use case well enough. [Nicholas Seckar] + Enumerable#first_match was like detect, but instead of returning the matching element, the yielded value returned. For example: user_xml = adapters(:from => User, :to => Xml).first_match do |adapter| |