Class: EffectiveAddressValidValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- EffectiveAddressValidValidator
- Defined in:
- app/models/validators/effective_address_valid_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
2 3 4 5 6 |
# File 'app/models/validators/effective_address_valid_validator.rb', line 2 def validate_each(record, attribute, value) if value.present? && !value.empty? && !value.valid? record.errors[attribute] << 'is invalid' end end |