aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/format.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2014-01-26 20:47:56 +0100
committerXavier Noria <fxn@hashref.com>2014-01-26 20:50:18 +0100
commit0df1f914104073b70f8d8976d0d5adc3b2a1e44e (patch)
tree1f76aaaeca5625b92cabb0f0788125115aaf5ec6 /activemodel/lib/active_model/validations/format.rb
parent61554efd02949c1de6e8a7be1c0e58a92a45bcb2 (diff)
downloadrails-0df1f914104073b70f8d8976d0d5adc3b2a1e44e.tar.gz
rails-0df1f914104073b70f8d8976d0d5adc3b2a1e44e.tar.bz2
rails-0df1f914104073b70f8d8976d0d5adc3b2a1e44e.zip
revises references to :allow_(nil|blank) in some docs [ci skip] [Steven Yang & Xavier Noria]
Closes #11247.
Diffstat (limited to 'activemodel/lib/active_model/validations/format.rb')
-rw-r--r--activemodel/lib/active_model/validations/format.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/validations/format.rb b/activemodel/lib/active_model/validations/format.rb
index f0fe22438f..ff3e95da34 100644
--- a/activemodel/lib/active_model/validations/format.rb
+++ b/activemodel/lib/active_model/validations/format.rb
@@ -91,10 +91,6 @@ module ActiveModel
#
# Configuration options:
# * <tt>:message</tt> - A custom error message (default is: "is invalid").
- # * <tt>:allow_nil</tt> - If set to true, skips this validation if the
- # attribute is +nil+ (default is +false+).
- # * <tt>:allow_blank</tt> - If set to true, skips this validation if the
- # attribute is blank (default is +false+).
# * <tt>:with</tt> - Regular expression that if the attribute matches will
# result in a successful validation. This can be provided as a proc or
# lambda returning regular expression which will be called at runtime.
@@ -107,7 +103,7 @@ module ActiveModel
# beginning or end of the string. These anchors are <tt>^</tt> and <tt>$</tt>.
#
# There is also a list of default options supported by every validator:
- # +:if+, +:unless+, +:on+ and +:strict+.
+ # +:if+, +:unless+, +:on+, +:allow_nil+, +:allow_blank+, and +:strict+.
# See <tt>ActiveModel::Validation#validates</tt> for more information
def validates_format_of(*attr_names)
validates_with FormatValidator, _merge_attributes(attr_names)