From: Love U Ruby Date: 2013-03-15T22:41:50+09:00 Subject: Re: Confusion with Strings Hi, I have some confusion with "ancestor" method. Can you help me out to clear the concept? class A end A.ancestors # => [A, Object, Kernel, BasicObject] <~~ Here why came? I actually expect the output as below one. A.class.ancestors # => [Class, Module, Object, Kernel, BasicObject] -- Posted via http://www.ruby-forum.com/.