This method is deprecated or moved on the latest stable version. The last existing version (v1_9_3_392) is shown here.
open(uri, config)
Open a client connection to uri using configuration config.
# File lib/drb/drb.rb, line 822 def self.open(uri, config) host, port, = parse_uri(uri) host.untaint port.untaint soc = TCPSocket.open(host, port) self.new(uri, soc, config) end