From: 7stud -- Date: 2007-11-06T03:57:05+09:00 Subject: Re: Reading a class-file and calling it at runtime. 7stud -- wrote: >it's only tracking const_get through ruby's > extremely confusing circular inheritance: > > Object <------+ > | | > V | > Module | > --const_get | > | > | | > V | > Class ---------+ > This might be a clearer diagram: Object | V Module --const_get | V Class | V Object (Object is a subclass of Class) puts Class.kind_of?(Object) -->true puts Object.kind_of?(Class) -->true -- Posted via http://www.ruby-forum.com/.