https://github.com/afaur/ruby-rabbitmq-basic
Connect to RabbitMQ using Bunny gem.
https://github.com/afaur/ruby-rabbitmq-basic
Last synced: over 1 year ago
JSON representation
Connect to RabbitMQ using Bunny gem.
- Host: GitHub
- URL: https://github.com/afaur/ruby-rabbitmq-basic
- Owner: afaur
- Created: 2016-06-22T19:12:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-22T19:14:21.000Z (about 10 years ago)
- Last Synced: 2025-02-12T13:56:41.581Z (over 1 year ago)
- Language: Ruby
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Tool for quickly connecting to rabbit and getting messages.
# Getting Started
Add the following into a file at: `config/settings.yml`
```
settings:
- :username: ''
:password: ''
:vhost: ''
:port: 5672
:host: ''
:queue: ''
```
- Fill in the values with your settings.
# Running
```
> bundle install
> bundle exec rake
```