mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Configuration options are symbols
This commit is contained in:
parent
14c254aba3
commit
8e0affbd86
1 changed files with 2 additions and 2 deletions
|
@ -50,9 +50,9 @@ module ActiveModel
|
|||
# end
|
||||
#
|
||||
# Configuration options:
|
||||
# * <tt>on</tt> - Specifies when this validation is active
|
||||
# * <tt>:on</tt> - Specifies when this validation is active
|
||||
# (<tt>:create</tt> or <tt>:update</tt>
|
||||
# * <tt>if</tt> - Specifies a method, proc or string to call to determine
|
||||
# * <tt>:if</tt> - Specifies a method, proc or string to call to determine
|
||||
# if the validation should occur (e.g. <tt>:if => :allow_validation</tt>,
|
||||
# or <tt>:if => Proc.new { |user| user.signup_step > 2 }</tt>).
|
||||
# The method, proc or string should return or evaluate to a true or false value.
|
||||
|
|
Loading…
Reference in a new issue