Skip to content

Instantly share code, notes, and snippets.

@lifo
lifo / config.ru
Created August 10, 2011 01:55 — forked from tobym/redis_pubsub_demo.rb
Redis PubSub demo with EventMachine (chat service)
require './redis_pubsub_demo'
routes = HttpRouter.new do
get('/').to(HomeAction)
get('/websocket').to(ChatAction)
end
# thin --timeout 0 -V start
run routes