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.



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

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.



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

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)


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

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