From: ts Date: 2003-03-17T21:56:35+09:00 Subject: Re: dynamically create a method >>>>> "R" == Robert Klemme writes: R> Hm, I could not imagine a scenario where method_missing is used to R> actually create methods. Typically I'd create them before they are R> missed. Can you provide an example? plruby (procedural language for PostgreSQL) can load methods stored in the database (because it run with $SAFE >= 4 require is not possible). Because it can't predict which methods will be used by the user it use method_missing to define these methods. Guy Decoux