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.



45
46
47
48
# File 'lib/sequel/plugins/validation_class_methods.rb', line 45

def initialize(receiver ,&block)
  @receiver = receiver
  instance_eval(&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.



51
52
53
# File 'lib/sequel/plugins/validation_class_methods.rb', line 51

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