brightbox-warren 0.8.4 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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