1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
---
title: "Bunny: Community and Getting Help"
layout: article
---
## Mailing List
[Bunny has a mailing list](https://groups.google.com/group/ruby-amqp). We
encourage you to also join the
[Ruby RabbitMQ Libraries](https://groups.google.com/forum/#!forum/ruby-amqp)
google group. Feel free to ask any questions that you may have.
## IRC
For more immediate help, please join `#rabbitmq` on `irc.freenode.net`.
## News & Announcements on Twitter
To subscribe for announcements of releases, important changes and so on, please follow [@rubyamqp](https://twitter.com/#!/rubyamqp) on Twitter.
## Reporting Issues
If you find a bug, poor default, missing feature or find any part of
the API inconvenient, please [file an
issue](http://github.com/ruby-amqp/bunny/issues) on GitHub. When
filing an issue, please specify which Bunny and RabbitMQ versions you
are using, provide recent RabbitMQ log file contents if possible, and
try to explain what behavior you expected and why. Bonus points for
contributing failing test cases.
## Contributing
First, clone the repository and run
bundle install --binstubs
and then run tests with
./bin/rspec -cfs spec
After that create a branch and make your changes on it. Once you are
done with your changes and all tests pass, submit a pull request on
GitHub.
|