Method: LongitudeValidator#validate_each
- Defined in:
- lib/flash_validators/validators/longitude_validator.rb
#validate_each(record, attribute, value) ⇒ Object
3 4 5 6 7 |
# File 'lib/flash_validators/validators/longitude_validator.rb', line 3 def validate_each(record, attribute, value) unless value.present? && value >= -180 && value <= 180 record.errors[attribute] << ([:message] || I18n.t('flash_validators.errors.messages.longitude')) end end |