aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 02:06:11 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 02:06:11 +0000
commit8bc82278dddfe23d84ac24ffe83f92c816028dd8 (patch)
tree4174fff5d299c9d6f8916eae0ab144d21ab55e02 /actionpack/CHANGELOG
parent1579f3b45db4b5717984174689c41b1e7f679d1b (diff)
downloadrails-8bc82278dddfe23d84ac24ffe83f92c816028dd8.tar.gz
rails-8bc82278dddfe23d84ac24ffe83f92c816028dd8.tar.bz2
rails-8bc82278dddfe23d84ac24ffe83f92c816028dd8.zip
Added that controllers will now attempt to require a model dependency with their name and in a singular attempt for their name.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@175 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index f08e5c9a5d..e60b7eb0da 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Added that controllers will now attempt to require a model dependency with their name and in a singular attempt for their name.
+ So both PostController and PostsController will automatically have the post.rb model required. If no model is found, no error is raised,
+ as it is then expected that no match is available and the programmer will have included his own models.
+
* Fixed DateHelper#date_select so that you can pass include_blank as an option even if you don't use start_year and end_year #59 [what-a-day]
* Added that controllers will now search for a layout in $template_root/layouts/$controller_name.r(html|xml), so PostsController will look