class EffectiveAddressValidValidator
Public Instance Methods
validate_each(record, attribute, value)
click to toggle source
# File lib/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