From ffde34d51075e584658b5d492a9d2b101c5633b7 Mon Sep 17 00:00:00 2001 From: Zoltan Debre Date: Tue, 16 Apr 2013 00:56:12 +0200 Subject: [PATCH] Change 'validates_presence_of' to 'presence: true' Of course validates_presence_of is still working but it is not explained in the guide, I think consequently should use 'presence: true' in this documentation. --- guides/source/active_record_validations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index df39d3c5dc..d043e42090 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -434,7 +434,7 @@ end Note that the default error messages are plural (e.g., "is too short (minimum is %{count} characters)"). For this reason, when `:minimum` is 1 you should -provide a personalized message or use `validates_presence_of` instead. When +provide a personalized message or use `presence: true` instead. When `:in` or `:within` have a lower limit of 1, you should either provide a personalized message or call `presence` prior to `length`.