Class: Veto::NotNullCheck

Inherits:
AttributeCheck show all
Defined in:
lib/veto/checks/not_null_check.rb

Instance Method Summary collapse

Methods inherited from AttributeCheck

#call, #initialize

Methods inherited from Check

#call

Constructor Details

This class inherits a constructor from Veto::AttributeCheck

Instance Method Details

#check(attribute, value, errors, options = {}) ⇒ Object



3
4
5
6
7
8
9
10
# File 'lib/veto/checks/not_null_check.rb', line 3

def check(attribute, value, errors, options={})
	message = options.fetch(:message, :not_null)
	on = options.fetch(:on, attribute)
	
	if value.nil?
		errors.add(on, message)
	end
end