Skip to content

Instantly share code, notes, and snippets.

@jc00ke
Created December 3, 2014 08:10
Show Gist options
  • Save jc00ke/0dc6f554a2c850f9bdce to your computer and use it in GitHub Desktop.
Save jc00ke/0dc6f554a2c850f9bdce to your computer and use it in GitHub Desktop.
Angelo test
require "angelo"
$price ||= 0
class App < Angelo::Base
websocket '/hearts' do |ws|
websockets[:hearts] << ws
ws.on_message do |msg|
$price += 1
ws.write({ price: $price }.to_json)
end
end
end
App.run!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment