When an instance of an object extends a module and extended is called on the module does the base already extend module?
module M
def self.extended base
# when this is called has base extended
end
def self.some_method
# that does something special ;)
end
end
obj = Object.new
obj.extend M
Update: Okay, so an Object and a String works, but why doesn't numbers work? I get TypeError: can't define singleton