docs/GettingStarted.textile in amqp-0.8.4 vs docs/GettingStarted.textile in amqp-0.9.0.pre1
- old
+ new
@@ -45,22 +45,22 @@
On Debian and Ubuntu, you can either "download the RabbitMQ .deb package":http://www.rabbitmq.com/server.html and install it with
"dpkg":http://www.debian.org/doc/FAQ/ch-pkgtools.en.html or make use of the "apt repository":http://www.rabbitmq.com/debian.html#apt that the RabbitMQ team provides.
For RPM-based distributions like RedHat or CentOS, the RabbitMQ team provides an "RPM package":http://www.rabbitmq.com/install.html#rpm.
<span class="note">
-The RabbitMQ package that ships with recent Ubuntu 10.10 versions is outdated and *will not work with v0.8.0 and later of the amqp gem* (we need at least RabbitMQ v2.0 for use with this guide).
+The RabbitMQ package that ships with recent Ubuntu versions (for example, 10.10) is outdated and *will not work with v0.8.0 and later of the amqp gem* (we need at least RabbitMQ v2.0 for use with this guide).
</span>
h2. Installing the Ruby amqp gem
h3. Make sure that you have Ruby and "Rubygems":http://docs.rubygems.org/read/chapter/3 installed
This guide assumes that you have installed one of the following supported Ruby implementations:
- * Ruby v1.8.7
+ * Ruby v1.8.7 [except for 1.8.7-p248 and -p249 that have "a bug that severely affects amqp gem":http://bit.ly/iONBmH]
* Ruby v1.9.2
* Ruby v1.9.3
* JRuby (we recommend v1.6)
* Rubinius v1.2 or higher
* Ruby Enterprise Edition
@@ -84,11 +84,11 @@
<pre>
<code>
source :rubygems
-gem "amqp", "~> 0.8.0" # optionally: :git => "git://github.com/ruby-amqp/amqp.git", :branch => "0.8.x-stable"
+gem "amqp", "~> 0.8.4" # optionally: :git => "git://github.com/ruby-amqp/amqp.git", :branch => "0.8.x-stable"
</code>
</pre>
h3. Verifying your installation
@@ -99,10 +99,10 @@
irb -rubygems
:001 > require "amqp"
=> true
:002 > AMQP::VERSION
-=> "0.8.0"
+=> "0.8.4"
</code>
</pre>
h2. "Hello, world" example