amq-client 0.7.0.alpha14 → 0.7.0.alpha15

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,7 +15,7 @@ amq_client_example "Bind a new queue to amq.fanout" do |client|
15
15
  puts "Queue #{queue.name.inspect} is now declared!"
16
16
 
17
17
  queue.bind("amq.fanout") do
18
- puts "Queue #{queue.name} is now bound to amq.fanout"
18
+ puts "Queue #{queue.name} is now bound to amq.fanout."
19
19
  puts
20
20
  puts "Deleting queue #{queue.name}"
21
21
  queue.delete do |message_count|
@@ -327,11 +327,11 @@ module AMQ
327
327
  end # handle_purge_ok(method)
328
328
 
329
329
  def handle_bind_ok(method)
330
- self.exec_callback_once(:bind)
330
+ self.exec_callback_once(:bind, method)
331
331
  end # handle_bind_ok(method)
332
332
 
333
333
  def handle_unbind_ok(method)
334
- self.exec_callback_once(:unbind)
334
+ self.exec_callback_once(:unbind, method)
335
335
  end # handle_unbind_ok(method)
336
336
 
337
337
  def handle_delivery(method, header, payload)
@@ -1,5 +1,5 @@
1
1
  module AMQ
2
2
  module Client
3
- VERSION = "0.7.0.alpha14"
3
+ VERSION = "0.7.0.alpha15"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amq-client
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1369027944
4
+ hash: 1369027945
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
9
  - 0
10
- - alpha14
11
- version: 0.7.0.alpha14
10
+ - alpha15
11
+ version: 0.7.0.alpha15
12
12
  platform: ruby
13
13
  authors:
14
14
  - Jakub Stastny