Skip to content

Files

Latest commit

f57cfee · Jun 5, 2014

History

History
This branch is 1120 commits behind rabbitmq/rabbitmq-tutorials:main.

ruby

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 4, 2013
Jul 28, 2013
Jul 28, 2013
Jul 28, 2013
Jul 28, 2013
Jul 25, 2013
Jul 25, 2013
Jul 25, 2013
Jul 25, 2013
Aug 25, 2013
Jun 5, 2014
Jul 28, 2013
Aug 4, 2013

Ruby code for RabbitMQ tutorials

Here you can find Ruby code examples from RabbitMQ tutorials.

Requirements

To run this code you need Bunny 0.9+.

You can install it via RubyGems:

gem install bunny --version ">= 0.9.1"

Bunny supports Ruby 2.0, 1.9, JRuby, Rubinius 2.0, and Ruby 1.8.7.

Code

Tutorial one: "Hello World!":

ruby send.rb
ruby receive.rb

Tutorial two: Work Queues:

ruby new_task.rb
ruby worker.rb

Tutorial three: Publish/Subscribe

ruby receive_logs.rb
ruby emit_log.rb

Tutorial four: Routing

ruby receive_logs_direct.rb
ruby emit_log_direct.rb

Tutorial five: Topics

ruby receive_logs_topic.rb
ruby emit_log_topic.rb

Tutorial six: RPC

ruby rpc_server.rb
ruby rpc_client.rb

To learn more, visit Bunny documentation site.