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.
Files changed (4) hide show
  1. data/CHANGELOG +1 -0
  2. data/readme.rdoc +3 -1
  3. data/warren.gemspec +1 -1
  4. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,3 +1,4 @@
1
+ v0.8.5. Added dummy adapter for testing purposes
1
2
  v0.8.4. Fix typo in 0.8.3
2
3
  v0.8.3. Can now override WARREN_ENV from the command line.
3
4
  v0.8.2. Added nice error message when no details for current env
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
- # Pull in the bunny adapter
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{warren}
5
- s.version = "0.8.4"
5
+ s.version = "0.8.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Caius Durling, David Smalley"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brightbox-warren
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caius Durling, David Smalley