Noel, the explanation for how singleton classes are represented in Ruby isn't correct. There is no separate `singleton_class` storage, even though Ruby API makes it look like that. What really is the internal class of the object points to the superclass which has the original class as its own class.
11 likes 2 replies
?