Class: Sequel::Plugins::ValidationClassMethods::ClassMethods::Generator

Inherits:
Object
  • Object
show all
Defined in:
lib/sequel/plugins/validation_class_methods.rb

Overview

The Generator class is used to generate validation definitions using the validates {} idiom.

Instance Method Summary collapse

Constructor Details

#initialize(receiver, &block) ⇒ Generator

Initializes a new generator.



57
58
59
60
# File 'lib/sequel/plugins/validation_class_methods.rb', line 57

def initialize(receiver ,&block)
  @receiver = receiver
  instance_exec(&block)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args, &block) ⇒ Object

Delegates method calls to the receiver by calling receiver.validates_xxx.



63
64
65
# File 'lib/sequel/plugins/validation_class_methods.rb', line 63

def method_missing(m, *args, &block)
  @receiver.send(:"validates_#{m}", *args, &block)
end

Instance Method Details

#respond_to_missing?(meth, include_private) ⇒ Boolean

This object responds to all validates_* methods the model responds to.

Returns:

  • (Boolean)


68
69
70
# File 'lib/sequel/plugins/validation_class_methods.rb', line 68

def respond_to_missing?(meth, include_private)
  @receiver.respond_to?(:"validates_#{meth}", include_private)
end