method

method_missing

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