Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created December 6, 2008 03:58
Show Gist options
  • Save bmizerany/32613 to your computer and use it in GitHub Desktop.
Save bmizerany/32613 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'thin'
require 'lizzy'
Thread.new do
sleep(1) until EM.reactor_running?
Lizzy.start
end
post "/some/url/:id" do
process_stuff
Lizzy.silently do
Lizzy.publish("server.up", payload)
end
Lizzy.log(:info, "server.up sent")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment