From ee640a1f75ce2db21443689ea4159eb5fb0be62d Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 28 Mar 2016 12:20:02 +0200 Subject: [PATCH] [skip ci] Update `numericality` validation docs Add `:other_than` option documentation. --- guides/source/active_record_validations.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index bcfdb935b2..baaebd21c8 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -505,6 +505,8 @@ constraints to acceptable values: * `:less_than_or_equal_to` - Specifies the value must be less than or equal to the supplied value. The default error message for this option is _"must be less than or equal to %{count}"_. +* `:other_than` - Specifies the value must be other than the supplied value. + The default error message for this option is _"must be other than %{count}"_. * `:odd` - Specifies the value must be an odd number if set to true. The default error message for this option is _"must be odd"_. * `:even` - Specifies the value must be an even number if set to true. The