Class: LongitudeValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- LongitudeValidator
- Defined in:
- lib/active_validation/validators/longitude_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
3 4 5 6 7 |
# File 'lib/active_validation/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('active_validation.errors.messages.longitude')) end end |