From: brad tilley Date: 2006-04-13T11:19:02+09:00 Subject: TCPsocket send, puts and write What are the differences (if any) between these methods of sending data: t = TCPsocket.new(host, port) t.write(a_string) t.close t = TCPsocket.new(host, port) t.puts(a_string) t.close t = TCPsocket.new(host, port) t.send(a_string) t.close -- Posted via http://www.ruby-forum.com/.