From: Daniel Berger Date: 2005-06-10T03:55:34+09:00 Subject: Getting a method object directly from a module Hi all, Is it possible to get a method object from a Module directly? This doesn't work: module Foo def my_method end end method = Foo.method(:my_method) => NameError: undefined method `my_method' for class `Module' Is there a way to do what I mean? Regards, Dan