class EffectiveAddressFullNamePresenceValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# 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