aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJeff Dutil <jdutil21@gmail.com>2011-08-16 13:12:07 -0400
committerJeff Dutil <jdutil21@gmail.com>2011-08-16 13:12:07 -0400
commitc5f97b5063d1d60341f9e984f29a3b9812fb4c7e (patch)
tree12019bcc9f0fe5dfce3ed18a00ea72a9170a70cf /railties
parentbd4800d614eb7060354a6f9fd8a749a7e7f046a8 (diff)
downloadrails-c5f97b5063d1d60341f9e984f29a3b9812fb4c7e.tar.gz
rails-c5f97b5063d1d60341f9e984f29a3b9812fb4c7e.tar.bz2
rails-c5f97b5063d1d60341f9e984f29a3b9812fb4c7e.zip
Fix formatting of active_record_validations_callbacks.textile so guide will render properly at http://edgeguides.rubyonrails.org/active_record_validations_callbacks.html#displaying-validation-errors-in-the-view
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/active_record_validations_callbacks.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/active_record_validations_callbacks.textile b/railties/guides/source/active_record_validations_callbacks.textile
index 977e736d25..aba3224ba7 100644
--- a/railties/guides/source/active_record_validations_callbacks.textile
+++ b/railties/guides/source/active_record_validations_callbacks.textile
@@ -751,8 +751,6 @@ class Person < ActiveRecord::Base
end
</ruby>
-
-
h4. +errors.clear+
The +clear+ method is used when you intentionally want to clear all the messages in the +errors+ collection. Of course, calling +errors.clear+ upon an invalid object won't actually make it valid: the +errors+ collection will now be empty, but the next time you call +valid?+ or any method that tries to save this object to the database, the validations will run again. If any of the validations fail, the +errors+ collection will be filled again.
@@ -799,6 +797,7 @@ h3. Displaying Validation Errors in the View
Rails maintains an official plugin that provides helpers to display the error messages of your models in your view templates. You can install it as a plugin or as a Gem.
h4. Installing as a plugin
+
<shell>
$ rails plugin install git://github.com/joelmoss/dynamic_form.git
</shell>
@@ -806,6 +805,7 @@ $ rails plugin install git://github.com/joelmoss/dynamic_form.git
h4. Installing as a Gem
Add this line in your Gemfile:
+
<ruby>
gem "dynamic_form"
</ruby>