method
method_missing
ruby latest stable - Class:
WEBrick::FakeProxyURI
method_missing(meth, *args)public
No documentation available.
# File lib/webrick/httpproxy.rb, line 28
def method_missing(meth, *args)
if %(scheme host port path query userinfo).member?(meth.to_s)
return nil
end
super
end