BasicObject
Metaid == a few simple metaclass helper (See whytheluckystiff.net/articles/seeingMetaclassesClearly.html.)
Defines an instance method within a class
# File metaid.rb, line 14 def class_def name, &blk class_eval { define_method name, &blk } end
Adds methods to a metaclass
# File metaid.rb, line 9 def meta_def name, &blk meta_eval { define_method name, &blk } end
Generated with the Darkfish Rdoc Generator 2.