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