From 053afbe3bd26d627ee04a0aaa73554b7be422f05 Mon Sep 17 00:00:00 2001 From: CassioMarques Date: Thu, 12 Mar 2009 10:37:16 -0300 Subject: Changing :integer_only to :only_integer in the AR Validations and Callbacks guide --- railties/guides/source/activerecord_validations_callbacks.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'railties/guides/source') diff --git a/railties/guides/source/activerecord_validations_callbacks.textile b/railties/guides/source/activerecord_validations_callbacks.textile index 1aacdd080c..9c9aaf9ad2 100644 --- a/railties/guides/source/activerecord_validations_callbacks.textile +++ b/railties/guides/source/activerecord_validations_callbacks.textile @@ -316,9 +316,9 @@ The +validates_size_of+ helper is an alias for +validates_length_of+. h4. +validates_numericality_of+ -This helper validates that your attributes have only numeric values. By default, it will match an optional sign followed by an integral or floating point number. To specify that only integral numbers are allowed set +:integer_only+ to true. +This helper validates that your attributes have only numeric values. By default, it will match an optional sign followed by an integral or floating point number. To specify that only integral numbers are allowed set +:only_integer+ to true. -If you set +:integer_only+ to +true+, then it will use the +If you set +:only_integer+ to +true+, then it will use the /\A[+-]?\d+\Z/ -- cgit v1.2.3