aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-03-26 20:00:40 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-03-26 20:00:40 +0000
commit3bab575316d919d1d51b9384f76f73cbcb0971e9 (patch)
tree0554cb4f20fbf4c650d6148b941e4217ce840fa9 /activesupport/CHANGELOG
parent4238666627a6b319c19f22ee279d15284ed5f245 (diff)
downloadrails-3bab575316d919d1d51b9384f76f73cbcb0971e9.tar.gz
rails-3bab575316d919d1d51b9384f76f73cbcb0971e9.tar.bz2
rails-3bab575316d919d1d51b9384f76f73cbcb0971e9.zip
Update Object.subclasses_of to locate nested classes. Update Object.remove_subclasses_of to use Class.remove_class.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4049 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 7978626fe6..9852e4a5fb 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Update Object.subclasses_of to locate nested classes. This affects Object.remove_subclasses_of in that nested classes will now be unloaded. [Nicholas Seckar]
+
+* Update Object.remove_subclasses_of to use Class.remove_class, reducing duplication. [Nicholas Seckar]
+
* Added Fixnum#seconds for consistency, so you can say 5.minutes + 30.seconds instead of 5.minutes + 30 #4389 [François Beausoleil]
* Added option to String#camelize to generate lower-cased camel case by passing in :lower, like "super_man".camelize(:lower) # => "superMan" [DHH]