aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_validations.md
diff options
context:
space:
mode:
authorArkadiusz Fal <arek@arekf.net>2016-03-28 12:20:02 +0200
committerArkadiusz Fal <arek@arekf.net>2016-03-28 12:22:46 +0200
commitee640a1f75ce2db21443689ea4159eb5fb0be62d (patch)
tree154e0ba25147b24a13b3f24b3c642a819fae6051 /guides/source/active_record_validations.md
parent59bf226890dcd91511ea5b90a87d3ad92f54d8b3 (diff)
downloadrails-ee640a1f75ce2db21443689ea4159eb5fb0be62d.tar.gz
rails-ee640a1f75ce2db21443689ea4159eb5fb0be62d.tar.bz2
rails-ee640a1f75ce2db21443689ea4159eb5fb0be62d.zip
[skip ci] Update `numericality` validation docs
Add `:other_than` option documentation.
Diffstat (limited to 'guides/source/active_record_validations.md')
-rw-r--r--guides/source/active_record_validations.md2
1 files changed, 2 insertions, 0 deletions
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