module Utils::IRB::Service

def connect(hostname = nil, port = nil)

def connect(hostname = nil, port = nil)
  hostname ||= self.hostname
  port     ||= self.port
  uri = "druby://#{hostname}:#{port}"
  irb = DRbObject.new_with_uri(uri)
  Proxy.new(irb)
end