docs/GettingStarted.textile in amqp-0.8.0.rc11 vs docs/GettingStarted.textile in amqp-0.8.0.rc12
- old
+ new
@@ -263,11 +263,11 @@
# encoding: utf-8
require "rubygems"
require "amqp"
-AMQP.start("amqp://dev.rabbitmq.com:5672/") do |connection|
+AMQP.start("amqp://dev.rabbitmq.com:5672") do |connection|
channel = AMQP::Channel.new(connection)
exchange = channel.fanout("nba.scores")
channel.queue("joe", :auto_delete => true).bind(exchange).subscribe do |payload|
puts "#{payload} => joe"
@@ -566,10 +566,10 @@
This tutorial ends here. Congratulations! You have learned quite a bit about both AMQP 0.9.1 and amqp gem.
h2. What to read next
-Documentation is organized as a {file:docs/DocumentationGuidesIndex.textile Routing guide number of guides}, covering all kinds of
+Documentation is organized as a {file:docs/DocumentationGuidesIndex.textile Number of guides}, covering all kinds of
topics from {file:docs/Routing.textile routing} to {file:docs/ErrorHandling.textile error handling} to
{file:docs/VendorSpecificExchanges.textile Broker-specific AMQP 0.9.1 extensions}.
To learn more on what you have seen in this tutorial, check out