Class: CarrierWave::Validations::ActiveModel::IntegrityValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/carrierwave/validations/active_model.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



23
24
25
26
27
28
# File 'lib/carrierwave/validations/active_model.rb', line 23

def validate_each(record, attribute, value)
  if e = record.__send__("#{attribute}_integrity_error")
    message = (e.message == e.class.to_s) ? :carrierwave_integrity_error : e.message
    record.errors.add(attribute, message)
  end
end