Class constructor. Init any attributes here. Do not forget to call ‘super’! _caller - the caller object *list - list of sources for the FROM clause
# File lib/dialects/example-constructor.rb, line 15 def initialize ( _caller, *list ) super # @attr_foo = false end
You may do mostly anything here, but don’t forget to call method_missing of the parent ( ‘return super’ )
# File lib/dialects/example-constructor.rb, line 40 def method_missing ( method, *args ) return super end
Generated with the Darkfish Rdoc Generator 2.