Skip to content

Instantly share code, notes, and snippets.

@dongyuwei
Created April 13, 2012 04:09
Show Gist options
  • Save dongyuwei/2373598 to your computer and use it in GitHub Desktop.
Save dongyuwei/2373598 to your computer and use it in GitHub Desktop.
sinatra stream
require 'rubygems'
require 'sinatra'
require 'eventmachine'
get '/evented' do
stream(:keep_open) do |out|
EventMachine::PeriodicTimer.new(1) { out << "#{Time.now}\n" }
end
end
@dongyuwei
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment