aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 13:58:03 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 13:58:03 +0000
commit69d0f50206bcca5d6b7d9c491637509af434651c (patch)
treedbc40013c8b63738675835d6e725128ee5630ce9 /railties/CHANGELOG
parent12a75736303d67f17e29f25aa635d521a56d0de2 (diff)
downloadrails-69d0f50206bcca5d6b7d9c491637509af434651c.tar.gz
rails-69d0f50206bcca5d6b7d9c491637509af434651c.tar.bz2
rails-69d0f50206bcca5d6b7d9c491637509af434651c.zip
Added support for independent components residing in /components
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@714 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG11
1 files changed, 11 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 2182dbc716..2dbfefa6f7 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,16 @@
*SVN*
+* Added support for independent components residing in /components. Example:
+
+ Controller: components/list/items_controller.rb
+ (holds a List::ItemsController class with uses_component_template_root called)
+
+ Model : components/list/item.rb
+ (namespace is still shared, so an Item model in app/models will take precedence)
+
+ Views : components/list/items/show.rhtml
+
+
* Added --sandbox option to script/console that'll roll back all changes made to the database when you quit #672 [bitsweat]
* Added 'recent' as a rake target that'll run tests for files that changed in the last 10 minutes #612 [bitsweat]