Class: ReduceValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/reduce_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, _value) ⇒ Object



4
5
6
7
8
# File 'lib/reduce_validator.rb', line 4

def validate_each(record, attribute, _value)
  return until record.errors.include?(attribute)

  record.errors[attribute].slice!(-1) until record.errors[attribute].size <= 1
end