From: Roger Pack Date: 2010-04-28T02:24:56+09:00 Subject: Re: Client server > But now I don't know anything about how this is done properly. Of > course, there are sockets, I assume there is something like remote > procedure call or so and maybe there is something fancier and more Ruby > like around. there is drb: http://segment7.net/projects/ruby/drb/introduction.html client server require 'socket'; TCPServer.new '0.0.0.0', 8000; # server TCPSocket.new '127.0.0.1', 8000; # client and EventMachine, basically (probably a few more options). GL! -rp -- Posted via http://www.ruby-forum.com/.