Class: IpAddressValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- IpAddressValidator
- Defined in:
- lib/workarea/validators/ip_address_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
2 3 4 5 6 |
# File 'lib/workarea/validators/ip_address_validator.rb', line 2 def validate_each(record, attribute, value) unless value.blank? or IPAddress.valid?(value) record.errors[attribute] << 'must be a valid IP address.' end end |