Class: EffectiveAddressFullNamePresenceValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- EffectiveAddressFullNamePresenceValidator
- Defined in:
- lib/validators/effective_address_full_name_presence_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
2 3 4 5 6 7 |
# File 'lib/validators/effective_address_full_name_presence_validator.rb', line 2 def validate_each(record, attribute, value) if value.present? && !value.empty? && value.full_name.blank? record.errors[attribute] << 'is invalid' value.errors[:full_name] << "can't be blank" end end |