Does Ruby have class methods?
A singleton method of a class object is called a class method. (Actually, the class method is defined in the metaclass, but that is pretty much transparent). Another way of looking at it is to say that a class method is a method whose receiver is a class. It all comes down to the fact that you can call class methods without having to have instances of that class (objects) as the receiver.