aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2006-04-29 20:13:27 +0000
committerMarcel Molina <marcel@vernix.org>2006-04-29 20:13:27 +0000
commit995167ec2eced73f44d4f961349dbbee6b297210 (patch)
treecd03978ee19fc2dfc57e534761ecfc4468d31adb /activesupport/CHANGELOG
parent61864909628f5ac2f20d3337e0274dab016ac7c5 (diff)
downloadrails-995167ec2eced73f44d4f961349dbbee6b297210.tar.gz
rails-995167ec2eced73f44d4f961349dbbee6b297210.tar.bz2
rails-995167ec2eced73f44d4f961349dbbee6b297210.zip
Strip out punctuation on predicates or bang methods being aliased with alias_method_chain since target?_without_feature is not a valid method name. Add tests for Module#alias_method_chain. [Marcel Molina Jr.]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4311 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index f781fe321d..7d20611df2 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Strip out punctuation on predicates or bang methods being aliased with alias_method_chain since target?_without_feature is not a valid method name. Add tests for Module#alias_method_chain. [Marcel Molina Jr.]
+
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
* Allow default options in with_options to be overridden. Closes #4480. [murphy@cYcnus.de]