js / stomp forked from zmalltalker/stomp

A ruby gem for sending and receiving messages from a Stomp protocol compliant message queue.

This URL has Read+Write access

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 Fri Feb 27 01:39:49 -0800 2009 Updated README, CHANGELOG and added AUTHORS [js]
file CHANGELOG Fri Feb 27 01:39:49 -0800 2009 Updated README, CHANGELOG and added AUTHORS [js]
file LICENSE Mon Jan 30 10:49:21 -0800 2006 Add license git-svn-id: http://svn.codehaus.o... [brianm]
file README.rdoc Fri Feb 27 01:39:49 -0800 2009 Updated README, CHANGELOG and added AUTHORS [js]
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/ Fri Feb 13 02:25:25 -0800 2009 Further Ruby 1.9 support: IO#getc returns a str... [js]
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