From ffaefe268184806977d7907243a98870593e4450 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Thu, 26 May 2011 00:16:09 +0530 Subject: [PATCH] fixed minor errors --- .../source/active_record_validations_callbacks.textile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/railties/guides/source/active_record_validations_callbacks.textile b/railties/guides/source/active_record_validations_callbacks.textile index 8721ca51c5..c9b03f169d 100644 --- a/railties/guides/source/active_record_validations_callbacks.textile +++ b/railties/guides/source/active_record_validations_callbacks.textile @@ -484,10 +484,10 @@ The +:allow_blank+ option is similar to the +:allow_nil+ option. This option wil class Topic < ActiveRecord::Base - validates :title, :length => { :is => 5, :allow_blank => true } + validates :title, :length => { :is => 5 }, :allow_blank => true end -Topic.create("title" => "").valid? # => true +Topic.create("title" => "").valid? # => true Topic.create("title" => nil).valid? # => true @@ -762,12 +762,13 @@ $ rails plugin install git://github.com/joelmoss/dynamic_form.git h4. Installing as a Gem + Add this line in your Gemfile: gem "dynamic_form" -Now you will have access to these two methods in your view templates: +Now you will have access to these two methods in your view templates. h4. +error_messages+ and +error_messages_for+