Class: ATDIS::Validators::PresenceBeforeTypeCastValidator

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

Overview

Take into account the value before type casting

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



75
76
77
78
79
80
81
82
# File 'lib/atdis/validators.rb', line 75

def validate_each(record, attribute, value)
  raw_value = record.send("#{attribute}_before_type_cast")
  if !raw_value.kind_of?(Array) && !raw_value.present?
    message = "can't be blank"
    message = ErrorMessage[message, options[:spec_section]] if options[:spec_section]
    record.errors.add(attribute, message)
  end
end