Symbol#to_proc to support block call.

based on a patch from @ksss; close #2071
parent dbe85f81
class Symbol
def to_proc
->(obj,*args) do
obj.send(self, *args)
->(obj,*args,&block) do
obj.send(self, *args, &block)
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment