aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-12 16:14:20 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-12 16:14:20 +0000
commit8e1f1ee44241838c2b701ad2622d98c9c41ea268 (patch)
tree2e9613082d40152c0303f5b95bdd238cd7a1b36f /actionpack
parentb141bdbb32cb58e493e6f52e4f1baa2a9d28680d (diff)
downloadrails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.tar.gz
rails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.tar.bz2
rails-8e1f1ee44241838c2b701ad2622d98c9c41ea268.zip
Moved require_association to associations.rb and added methods for resetting the inheritable attributes on subclasses
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@125 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG2
-rw-r--r--actionpack/lib/action_controller/support/class_inheritable_attributes.rb4
2 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 05569a2c06..a8fa53a143 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added display of error messages with scaffolded form pages
+
* Added option to ERB templates to swallow newlines by using <% if something -%> instead of just <% if something %>. Example:
class SomeController < AbstractApplicationController
diff --git a/actionpack/lib/action_controller/support/class_inheritable_attributes.rb b/actionpack/lib/action_controller/support/class_inheritable_attributes.rb
index 7f061fdf1b..39312e8d5b 100644
--- a/actionpack/lib/action_controller/support/class_inheritable_attributes.rb
+++ b/actionpack/lib/action_controller/support/class_inheritable_attributes.rb
@@ -28,6 +28,10 @@ module ClassInheritableAttributes # :nodoc:
inheritable_attributes[key]
end
+ def reset_inheritable_attributes
+ inheritable_attributes.clear
+ end
+
private
def inherited(child)
@@classes[child] = inheritable_attributes.dup