Class: MacFormatValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- MacFormatValidator
- Defined in:
- lib/mac_format/mac_format_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
2 3 4 5 6 |
# File 'lib/mac_format/mac_format_validator.rb', line 2 def validate_each(record, attribute, value) value = format_value!(record, attribute, value) rescue ArgumentError record.errors[attribute] << ([:message] || "is invalid") end |