method
validates_presence_of
v1.0.0 -
Show latest stable
-
0 notes -
Class: ActiveRecord::Validations::ClassMethods
- 1.0.0 (0)
- 1.1.6 (14)
- 1.2.6 (7)
- 2.0.3 (8)
- 2.1.0 (-8)
- 2.2.1 (0)
- 2.3.8 (2)
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2 (15)
- 4.1.8 (0)
- 4.2.1 (3)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (7)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (-35)
- 7.1.3.4 (0)
- What's this?
validates_presence_of(*attr_names)
public
Validates that the specified attributes are not blank (as defined by Object#blank?). Happens by default on save.
Configuration options:
- message - A custom error message (default is: "can’t be blank")
- on - Specifies when this validation is active (default is :save, other options :create, :update)
- if - Specifies a method, proc or string to call to determine if the validation should
occur (e.g. :if => :allow_validation, or :if => Proc.new { |user| user.signup_step > 2 }). The method, proc or string should return or evaluate to a true or false value.