1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

using __send__ to prevent calling TCPSocket#send

This commit is contained in:
dominic-ew 2015-01-13 18:50:04 +01:00
parent 233aa8132e
commit 6ff4400c80

View file

@ -40,7 +40,7 @@ class Pry
end
def method_missing(name, *args, &block)
_pry_.config.output.send(name, *args, &block)
_pry_.config.output.__send__(name, *args, &block)
end
def respond_to_missing?(*a)