Wednesday, 25 March 2015

method_missing to object

class Object
def method_missing(meth, *args, &block)
p meth
p args
super
end
end
view raw gistfile1.rb hosted with ❤ by GitHub

No comments:

Post a Comment