On Thursday 05 July 2007, Han Holl wrote: > - if !defined(@functions) || @functions.nil? > + if @functions.nil? It's a typo !! Should be if !defined?(@functions) || @functions.nil? Hence the method_missing traceback Cheers Han Holl