Class: DataMapper::Validations::PresenceValidator

Inherits:
GenericValidator show all
Defined in:
lib/dm-validations/validators/required_field_validator.rb

Overview

Author:

  • Guy van den Berg

Since:

  • 0.9

Instance Attribute Summary

Attributes inherited from GenericValidator

#field_name, #humanized_field_name, #if_clause, #options, #unless_clause

Instance Method Summary collapse

Methods inherited from GenericValidator

#==, #add_error, #evaluate_conditional_clause, #execute?, #initialize, #inspect, #optional?, #set_optional_by_default

Constructor Details

This class inherits a constructor from DataMapper::Validations::GenericValidator

Instance Method Details

#call(target) ⇒ Object

Since:

  • 0.9



7
8
9
10
11
12
13
14
15
16
# File 'lib/dm-validations/validators/required_field_validator.rb', line 7

def call(target)
  value    = target.validation_property_value(field_name)
  property = get_resource_property(target, field_name)
  return true if present?(value, property)

  error_message = @options[:message] || default_error(property)
  add_error(target, error_message, field_name)

  false
end