public
Fork of tonyg/stomp
Description: A ruby gem for sending and receiving messages from a Stomp protocol compliant message queue.
Homepage: http://rubyforge.org/projects/stomp/
Clone URL: git://github.com/zmalltalker/stomp.git
js (author)
Fri Feb 27 01:39:49 -0800 2009
Marius Mathiesen (committer)
Thu Mar 12 03:11:47 -0700 2009
commit  a21f2873f387ad37a0225c108153dfa83cf45313
tree    bfe4622432132ddc4f521143eca39c35faf1645a
parent  812c5defe0535f27d73532b42d05bc6a0d8f7c29
stomp /
name age message
file .gitignore Thu May 08 18:20:11 -0700 2008 DRY'ed up test dir with test_helper.rb file [grempe]
file AUTHORS Loading commit data...
file CHANGELOG
file LICENSE Mon Jan 30 10:49:21 -0800 2006 Add license git-svn-id: http://svn.codehaus.o... [brianm]
file README.rdoc
file Rakefile Sat May 10 09:48:43 -0700 2008 Added new RSpec specs. Raise arg exceptions wh... [grempe]
directory bin/ Thu May 08 22:43:08 -0700 2008 Code cleanup. More consistent use of ()'s. [grempe]
directory lib/
directory spec/ Sat May 10 09:48:43 -0700 2008 Added new RSpec specs. Raise arg exceptions wh... [grempe]
file stomp.gemspec Mon Feb 16 00:04:39 -0800 2009 Bump gem version number to 1.1 [js]
directory test/ Sat May 10 09:48:43 -0700 2008 Added new RSpec specs. Raise arg exceptions wh... [grempe]
README.rdoc

README

stomp.rubyforge.org/

Overview

An implementation of the Stomp protocol (stomp.codehaus.org/Protocol) for Ruby.

Example Usage

    client = Stomp::Client.new("test", "user", "localhost", 61613)
    client.send("/my/queue", "hello world!")
    client.subscribe("/my/queue") do |msg|
      p msg
    end

Contact info

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>

Source Code

  http://gitorious.org/projects/stomp/
  http://github.com/js/stomp/

Project urls

Project Home :

  http://gitorious.org/projects/stomp/
  http://rubyforge.org/projects/stomp/

Stomp Protocol Info :

  http://stomp.codehaus.org/Protocol