This module contains a configurable method missing delegator and can be mixed into a module/class.
Delegates all missing method calls to method_missing_delegator if this attribute has been set. Otherwise it will call super.
# File lib/tins/dslkit.rb, line 548 def method_missing(id, *a, &b) unless method_missing_delegator.nil? method_missing_delegator.__send__(id, *a, &b) else super end end
Generated with the Darkfish Rdoc Generator 2.