Class: CarrierWave::Validations::ActiveModel::DownloadValidator

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



31
32
33
34
35
# File 'lib/carrierwave/validations/active_model.rb', line 31

def validate_each(record, attribute, value)
  record.__send__("#{attribute}_download_errors").each do |e|
    record.errors.add(attribute, :carrierwave_download_error, message: (e.message != e.class.to_s) && e.message)
  end
end