--0016e6d588d2f945cf046fafee2c
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
hi, try this:
class A
class << self
def go
obj .new
def obj.method_missing *args
p 'method missing'
end
obj
end
end
end
A.go.uiae
A.new.uiae
Greetz!
--0016e6d588d2f945cf046fafee2c--