Class: ActiveModel::Validations::NotNullValidator

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

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/active_model/validations/not_null.rb', line 4

def validate_each(record, attribute, value)
  if value.nil?
    errors_options = options.except(:must_be_set)
    default_message = options[:must_be_set]
    errors_options[:message] ||= default_message if default_message
    record.errors.add(attribute, :must_be_set, errors_options)
  end
end