method
skip_nil_check?
v4.2.7 -
Show latest stable
- Class:
ActiveModel::Validations::LengthValidator
skip_nil_check?(key)private
No documentation available.
# File activemodel/lib/active_model/validations/length.rb, line 69
def skip_nil_check?(key)
key == :maximum && options[:allow_nil].nil? && options[:allow_blank].nil?
end