Contains meta_def method for adding methods to objects via blocks, used by some of Sequel’s classes and objects.
Define a method with the given name and block body on the receiver.
# File lib/sequel/metaprogramming.rb, line 5 def meta_def(name, &block) (class << self; self end).send(:define_method, name, &block) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.