Skip to content

Instantly share code, notes, and snippets.

@evilbetty
evilbetty / emchat.rb
Created March 20, 2012 00:44
Simple chat server with eventmachine
#!/usr/bin/env ruby
#
# Chat server attempt with Ruby and EventMachine.
#
# TODO:
#
# - Prevent chat from acting on \n (pressing enters in chat)
# - Handle (unexpected) disconnects properly (with unbind event).
# - Implement proper leaving with /quit.