Project

jackalope

0.02
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
AMQP-HTTP compliant Server for Rack applications
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0

Runtime

>= 0
>= 0
 Project Readme

Build Status

Jackalope

Jackalope

AMQP-HTTP compliant Server to run your rack (rails) application using AMQP as the transport protocol.

Installation

Add this line to your application's Gemfile:

gem 'jackalope'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jackalope

Usage

jackalope -q <queue name> <rackup file>

for rails app:

jackalope -q my.queue config.ru

all parameters:

Parameters Description Default Value
-q, --queue rabbitmq queue name for application communication default.queue
-s, --server rabbitmq server host or IP address localhost
-p, --port rabbitmq server port 5672
-u, --user username to use for the rabbitmq server connection guest
-P, --pass password to use for the rabbitmq server connection guest
-t, --tls use TLS when connecting to the rabbitmq server false
-c, --cert path to the client certificate (pem format) nil
-k, --key path to the client private key (pem format) nil
-r, --prefetch number of messages to rcv w/o sending consumer ack 1
-h, --heartbeat heartbeat to use when connecting to rabbitmq server 5 (seconds)
-d, --debug turn on some debugging messages false
-h, --help show the help dialog N/A
-v, --version show the version N/A

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request