Skip to content

Instantly share code, notes, and snippets.

@cjheath
Created September 8, 2010 02:51
Show Gist options
  • Save cjheath/569535 to your computer and use it in GitHub Desktop.
Save cjheath/569535 to your computer and use it in GitHub Desktop.
aget "/notifications/:n" do |n|
channel = $channels[n] and
subscription = channel.subscribe { |msg|
body(msg)
}
on_close { channel.unsubscribe(subscription) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment