#61: ObjectSpace.each_object(Foo) doesn't yield subclasses -------------------------------+-------------------------------------------- Reporter: kreatix@gmail.com | Owner: lsansonetti@apple.com Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: -------------------------------+-------------------------------------------- Runing this code: {{{ a = []; ObjectSpace.each_object(Module) { |c| a << c.class }; p a.uniq }}} on MRI: {{{ # => [Module, Class] }}} On Macruby: {{{ # => [Module] }}} -- Ticket URL: <http://ruby.macosforge.org/trac/ticket/61> macruby <http://ruby.macosforge.org/>