An implementation of the Stomp protocol (stomp.codehaus.org/Protocol) for Ruby.
client = Stomp::Client.new("test", "user", "localhost", 61613) client.send("/my/queue", "hello world!") client.subscribe("/my/queue") do |msg| p msg end
Up until March 2009 the project was maintained and primarily developed by Brian McCallister.
The project is now maintained by Johan Sørensen <johan@johansorensen.com>
http://gitorious.org/projects/stomp/ http://github.com/js/stomp/
Project Home :
http://gitorious.org/projects/stomp/ http://rubyforge.org/projects/stomp/
Stomp Protocol Info :
http://stomp.codehaus.org/Protocol