summaryrefslogtreecommitdiff
path: root/net/ruby-amqp/Makefile
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2015-02-04 15:47:45 +0000
committertaca <taca@pkgsrc.org>2015-02-04 15:47:45 +0000
commite17623aaa61f542a839cab117818b455a0085c51 (patch)
tree80c8adcf2d3abf99275868eadb47f184b34e6c72 /net/ruby-amqp/Makefile
parentc70510679883ef821549f6f6968b3d57e4896235 (diff)
downloadpkgsrc-e17623aaa61f542a839cab117818b455a0085c51.tar.gz
Update ruby-amqp to 1.5.0.
## Changes Between 1.4.x and 1.5.0 ### Only Await basic.consume-ok If nowait is false Contributed by Rian McGuire. ### Server-Named Queue Recovery Fix Server-named queues are now correctly recovered again. Contributed by Jack C Hong. ## Changes Between 1.3.x and 1.4.0 ### connection.blocked Support [connection.blocked](https://www.rabbitmq.com/connection-blocked.html) notifications are now correctly supported by the library: ``` ruby EventMachine.run do connection = AMQP.connect(:host => '127.0.0.1') connection.on_blocked do |conn, conn_blocked| puts "Connection blocked, reason: #{conn_blocked.reason}" end connection.on_unblocked do |conn, _| puts "Connection unblocked" end end ```
Diffstat (limited to 'net/ruby-amqp/Makefile')
-rw-r--r--net/ruby-amqp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ruby-amqp/Makefile b/net/ruby-amqp/Makefile
index 392b1d68e17..47435fabd32 100644
--- a/net/ruby-amqp/Makefile
+++ b/net/ruby-amqp/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2014/03/14 17:36:28 taca Exp $
+# $NetBSD: Makefile,v 1.17 2015/02/04 15:47:45 taca Exp $
-DISTNAME= amqp-1.3.0
+DISTNAME= amqp-1.5.0
CATEGORIES= net
MAINTAINER= pkgsrc-users@NetBSD.org