From: Arnaud Bergeron Date: 2006-09-29T01:15:15+09:00 Subject: Re: define_method confusery On 9/28/06, Martin Coxall wrote: [snip] > > # List the methods of Klass > Klass.methods.sort.each do |method| Try Klass.instance_methods. > puts "Klass##{methodName}" > end > > ----------------------------------------------------------------