Module: Sequel::Plugins::ConstraintValidations::InstanceMethods
- Defined in:
- lib/sequel/plugins/constraint_validations.rb
Instance Method Summary collapse
-
#validate ⇒ Object
Run all of the constraint validations parsed from the database when validating the instance.
Instance Method Details
#validate ⇒ Object
Run all of the constraint validations parsed from the database when validating the instance.
244 245 246 247 248 249 250 |
# File 'lib/sequel/plugins/constraint_validations.rb', line 244 def validate super model.constraint_validations.each do |v| # Allow calling private validation methods send(*v) end end |