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