brightbox-warren 0.8.4 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +1 -0
- data/readme.rdoc +3 -1
- data/warren.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/readme.rdoc
CHANGED
@@ -16,8 +16,10 @@ Start by looking at examples/ to see how to use it, and then lib/warren/adapters
|
|
16
16
|
|
17
17
|
require "rubygems"
|
18
18
|
require "warren"
|
19
|
-
#
|
19
|
+
# Use the bunny adapter to connect to RabbitMQ (Bunny is an AMQP client that works with Rails/Passenger apps)
|
20
20
|
require "warren/adapters/bunny_adapter"
|
21
|
+
# If you're running in development and don't want to actually push messages onto the queue then instead of loading the bunny adapter use the dummy adapter
|
22
|
+
require "warren/adapters/dummy_adapter"
|
21
23
|
|
22
24
|
# See examples/ for more
|
23
25
|
|
data/warren.gemspec
CHANGED