queueing_rabbit 0.3.0 → 0.3.1

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/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
+ .rvmrc
6
7
  Gemfile.lock
7
8
  InstalledFiles
8
9
  _yardoc
@@ -66,7 +66,10 @@ module QueueingRabbit
66
66
  def follow_job_requirements(job)
67
67
  follow_bus_requirements(job) do |ch, ex|
68
68
  conn.define_queue(ch, job.queue_name, job.queue_options) do |q|
69
- conn.bind_queue(q, ex, job.binding_options) if job.bind_queue?
69
+ if job.bind_queue?
70
+ job.binding_declarations.each { |o| conn.bind_queue(q, ex, o) }
71
+ end
72
+
70
73
  yield ch, ex, q
71
74
  end
72
75
  end
@@ -14,8 +14,9 @@ module QueueingRabbit
14
14
  @exchange_options.merge(:type => :direct)
15
15
  end
16
16
 
17
- def binding_options
18
- @binding_options || {:routing_key => queue_name.to_s}
17
+ def binding_declarations
18
+ @binding_declarations ||= []
19
+ @binding_declarations.push(:routing_key => queue_name.to_s)
19
20
  end
20
21
  end
21
22
 
@@ -9,7 +9,7 @@ module QueueingRabbit
9
9
  othermod.class_eval do
10
10
  inheritable_variables :queue_name, :queue_options, :channel_options,
11
11
  :exchange_name, :exchange_options,
12
- :binding_options, :listening_options,
12
+ :binding_declarations, :listening_options,
13
13
  :publishing_defaults
14
14
  end
15
15
  end
@@ -34,16 +34,18 @@ module QueueingRabbit
34
34
  end
35
35
 
36
36
  def bind(options = {})
37
- @binding_options ||= {}
38
- @binding_options.update(options)
37
+ @binding_declarations ||= []
38
+ @binding_declarations << options
39
39
  end
40
40
 
41
- def binding_options
42
- @binding_options || nil
41
+ def binding_declarations
42
+ @binding_declarations || []
43
43
  end
44
44
 
45
45
  def bind_queue?
46
- exchange_options[:type] && exchange_options[:type] != :default && binding_options
46
+ exchange_options[:type] &&
47
+ exchange_options[:type] != :default &&
48
+ !binding_declarations.empty?
47
49
  end
48
50
 
49
51
  def listening_options
@@ -1,3 +1,3 @@
1
1
  module QueueingRabbit
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -7,7 +7,7 @@ describe 'Configuring jobs' do
7
7
  exchange 'exchange_name', :durable => true
8
8
  channel :prefetch => 15
9
9
  queue :durable => true
10
- bind :ack => true
10
+ bind :routing_key => 'sunday'
11
11
  publish_with :persistent => true
12
12
  end
13
13
  }
@@ -23,7 +23,7 @@ describe 'Configuring jobs' do
23
23
  its(:queue_name) { should == 'queue_name' }
24
24
  its(:exchange_name) { should == 'exchange_name' }
25
25
  its(:queue_options) { should include(:durable => true) }
26
- its(:binding_options) { should include(:ack => true) }
26
+ its(:binding_declarations) { should include(:routing_key => 'sunday') }
27
27
  its(:publishing_defaults) { should include(:persistent => true) }
28
28
  its(:channel_options) { should include(:prefetch => 15) }
29
29
  end
@@ -34,7 +34,7 @@ describe 'Configuring jobs' do
34
34
  exchange 'exchange_name', :durable => true
35
35
  channel :prefetch => 15
36
36
  queue :durable => true
37
- bind :ack => true
37
+ bind :routing_key => 'sunday'
38
38
  publish_with :persistent => true
39
39
  end
40
40
  }
@@ -43,7 +43,7 @@ describe 'Configuring jobs' do
43
43
  Class.new(base_class) do
44
44
  channel :use_publisher_confirms => true
45
45
  queue 'queue_name', :durable => false
46
- bind :ack => false
46
+ bind :routing_key => 'monday'
47
47
  end
48
48
  }
49
49
 
@@ -52,7 +52,7 @@ describe 'Configuring jobs' do
52
52
  its(:channel_options) { should include(:use_publisher_confirms => true,
53
53
  :prefetch => 15) }
54
54
  its(:queue_options) { should include(:durable => false) }
55
- its(:binding_options) { should include(:ack => false) }
55
+ its(:binding_declarations) { should include(:routing_key => 'sunday') and include(:routing_key => 'monday') }
56
56
  its(:publishing_defaults) { should include(:persistent => true) }
57
57
 
58
58
  end
@@ -70,6 +70,6 @@ describe 'Configuring jobs' do
70
70
 
71
71
  its(:exchange_name) { should == 'exchange_name' }
72
72
  its(:exchange_options) { should include(:type => :direct) }
73
- its(:binding_options) { should include(:routing_key => 'queue_name')}
73
+ its(:binding_declarations) { should include(:routing_key => 'queue_name')}
74
74
  end
75
75
  end
@@ -15,6 +15,6 @@ describe QueueingRabbit::JobExtensions::DirectExchange do
15
15
 
16
16
  its(:exchange_name) { should == 'test_job' }
17
17
  its(:exchange_options) { should include(:type => :direct) }
18
- its(:binding_options) { should include(:routing_key => 'test_queue') }
18
+ its(:binding_declarations) { should include(:routing_key => 'test_queue') }
19
19
 
20
20
  end
@@ -31,7 +31,7 @@ describe QueueingRabbit::AbstractJob do
31
31
  its(:queue_name) { should == 'test_queue' }
32
32
  its(:queue_options) { should include(:durable => true) }
33
33
  its(:exchange_options) { should include(:durable => false) }
34
- its(:binding_options) { should include(:routing_key => 'test.*') }
34
+ its(:binding_declarations) { should include(:routing_key => 'test.*') }
35
35
  its(:publishing_defaults) { should include(:routing_key => 'test_queue') }
36
36
 
37
37
  describe ".queue_size" do
@@ -10,14 +10,16 @@ describe QueueingRabbit do
10
10
  let(:channel_options) { {:prefetch => 1, :auto_recovery => true} }
11
11
  let(:exchange_name) { mock }
12
12
  let(:exchange_options) { {:type => :direct, :durable => true} }
13
- let(:binding_options) { {:key => 'routing_key'} }
13
+ let(:binding_declaration_1) { {:routing_key => 'routing_key'} }
14
+ let(:binding_declaration_2) { {:routing_key => 'routing_key2'} }
14
15
  let(:job) {
15
16
  stub(:queue_name => queue_name,
16
17
  :queue_options => queue_options,
17
18
  :channel_options => channel_options,
18
19
  :exchange_name => exchange_name,
19
20
  :exchange_options => exchange_options,
20
- :binding_options => binding_options,
21
+ :binding_declarations => [binding_declaration_1,
22
+ binding_declaration_2],
21
23
  :bind_queue? => true)
22
24
  }
23
25
 
@@ -83,7 +85,9 @@ describe QueueingRabbit do
83
85
  with(channel, job.queue_name, job.queue_options).
84
86
  and_yield(queue)
85
87
  connection.should_receive(:bind_queue).
86
- with(queue, exchange, job.binding_options)
88
+ with(queue, exchange, binding_declaration_1)
89
+ connection.should_receive(:bind_queue).
90
+ with(queue, exchange, binding_declaration_2)
87
91
 
88
92
  subject.follow_job_requirements(job) do |ch, ex, q|
89
93
  ch.should == channel
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queueing_rabbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-20 00:00:00.000000000 Z
12
+ date: 2013-10-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: amqp
@@ -167,7 +167,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
167
167
  version: '0'
168
168
  segments:
169
169
  - 0
170
- hash: 1557293148620146716
170
+ hash: 3868838367172199305
171
171
  required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  none: false
173
173
  requirements:
@@ -176,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
176
176
  version: '0'
177
177
  segments:
178
178
  - 0
179
- hash: 1557293148620146716
179
+ hash: 3868838367172199305
180
180
  requirements: []
181
181
  rubyforge_project:
182
182
  rubygems_version: 1.8.25