On Thu, Feb 3, 2011 at 5:28 PM, Eric Christopherson <[email protected]> wrote: > On Sat, Jan 29, 2011 at 5:15 PM, Robert Rice <[email protected]> wrote: >> Hi Eric: >> >> Thanks, the ancestors method will work better. >> >> Do class objects inherit all of the Module methods? > > Sorry, I didn't see your message before (assuming you were asking me > specifically). > > I hope someone else answers this, because I'm not sure. In others > Rubys, Class is a subclass of Module, so all of Module's methods > should be inherited; but I'm not sure about MacRuby.
Class is a subclass of Module in MacRuby too. And it does inherit Module's methods. You can prove this for yourself in any given Ruby: Module.methods - Class.methods It will return [] if Class has every method that Module does. — Chuck _______________________________________________ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
