Class: ArrayTypesValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- ArrayTypesValidator
- Defined in:
- lib/array_types_validator.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
2 3 4 |
# File 'lib/array_types_validator.rb', line 2 def validate_each(record, attribute, value) record.errors[attribute] << "must contain instances of only: #{show_allowed_types}, was: #{types_for(value)}" unless allowed_type? value end |