Merge pull request #19721 from vngrs/validates_presence_of_missing_note

Missing note on validates_presence_of validation [ci skip]
This commit is contained in:
Robin Dupret 2015-04-11 22:43:36 +02:00
commit d21c688522

@ -43,6 +43,10 @@ module ClassMethods
# deletes the associated object, thus putting the parent object into an invalid
# state.
#
# NOTE: This validation will not fail while using it with an association
# if the latter was assigned but not valid. If you want to ensure that
# it is both present and valid, you also need to use +validates_associated+.
#
# Configuration options:
# * <tt>:message</tt> - A custom error message (default is: "can't be blank").
# * <tt>:on</tt> - Specifies the contexts where this validation is active.