Class: DataMapper::Validate::AbsentFieldValidator

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

Overview

Author:

  • Guy van den Berg

Since:

  • 0.9

Instance Attribute Summary

Attributes inherited from GenericValidator

#if_clause, #unless_clause

Instance Method Summary collapse

Methods inherited from GenericValidator

#==, #add_error, #execute?, #field_name

Constructor Details

#initialize(field_name, options = {}) ⇒ AbsentFieldValidator

Returns a new instance of AbsentFieldValidator.

Since:

  • 0.9



10
11
12
13
# File 'lib/dm-validations/absent_field_validator.rb', line 10

def initialize(field_name, options={})
  super
  @field_name, @options = field_name, options
end

Instance Method Details

#call(target) ⇒ Object

Since:

  • 0.9



15
16
17
18
19
20
21
22
23
# File 'lib/dm-validations/absent_field_validator.rb', line 15

def call(target)
  field_value = target.send(field_name).blank?
  return true if field_value

  error_message = @options[:message] || "%s must be absent".t(Extlib::Inflection.humanize(@field_name))
  add_error(target, error_message , @field_name)

  return false
end