From 12deba3dca4c61ac665cd983f791016b75bdaaec Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 1 Feb 2011 14:40:51 +0000 Subject: [PATCH 1/2] removed rack-test from development dependencies, cause really, it never should have been there --- amqp-failover.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/amqp-failover.gemspec b/amqp-failover.gemspec index fbaea7d..6e99982 100644 --- a/amqp-failover.gemspec +++ b/amqp-failover.gemspec @@ -22,7 +22,6 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'amqp', '>= 0.7.0' s.add_development_dependency 'rake', '>= 0.8.7' - s.add_development_dependency 'rack-test', '>= 0.5.6' s.add_development_dependency 'rspec', '>= 2.1.0' s.add_development_dependency 'yard', '>= 0.6.3' s.add_development_dependency 'json', '>= 1.5.0' From d03ac850a51150e0bdb2dbc0d0b6afb8f250b93f Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 1 Feb 2011 14:43:47 +0000 Subject: [PATCH 2/2] updated readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 8bd38f4..b4c751a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,11 @@ Add multi-server support with failover and fallback to the [amqp](https://github.com/ruby-amqp/amqp) gem. Failover is configured by providing multiple servers/configurations to `AMQP.start` or `AMQP.connect`. Both methods will still accept the same options input as they always have, they simply now support additional forms of options which when used, enables the failover features. +## Installation ## + + gem install amqp-failover + + ## Basic Usage ## require 'mq'