require 'drb'
class ExampleServer
def hello
"hello world"
end
end
DRb.start_service("druby://localhost:1234", ExampleServer.new)
DRb.thread.join
Here's the client:
require 'drb' DRb.start_service srv = DRbObject.new(nil, "druby://localhost:1234") p srv.hello