In Ruby, how do you call a class method from one of that class\'s instances? Say I have
class Truck def self.default_make # Class method. \"mac\" end
self.class.default_make