1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

amq-client is a fully-featured, low-level AMQP 0.9.1 client that

runs on Ruby 1.8.7, 1.9.2, REE, Rubinius and JRuby.

It's sweet spot is in serving as foundation for higher-level, more
opinionated AMQP libraries.

It can be used directly by applications code when performance and access
to advanced AMQP protocol features is more important that API convenience.

WWW: https://github.com/ruby-amqp/amq-client
This commit is contained in:
Cheng-Lung Sung 2011-09-30 01:09:35 +00:00
parent 5bd863dbdb
commit 5fc35447d5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=282643
4 changed files with 35 additions and 0 deletions

View File

@ -957,6 +957,7 @@
SUBDIR += ruby-net-geoip
SUBDIR += ruby-tcpsocketpipe
SUBDIR += ruby-tserver
SUBDIR += rubygem-amq-client
SUBDIR += rubygem-amq-protocol
SUBDIR += rubygem-amqp
SUBDIR += rubygem-amqp-utils

View File

@ -0,0 +1,22 @@
# Ports collection makefile for: rubygem-amq-client
# Date created: 29 Sep 2011
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= amq-client
PORTVERSION= 0.8.3
CATEGORIES= net rubygems
MASTER_SITES= RG
MAINTAINER= clsung@FreeBSD.org
COMMENT= A fully-featured, low-level AMQP 0.9.1 client in Ruby
RUN_DEPENDS= rubygem-eventmachine>=0.12.4:${PORTSDIR}/devel/rubygem-eventmachine \
rubygem-amq-protocol>=0.8.0:${PORTSDIR}/net/rubygem-amq-protocol
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/amq-client-0.8.3.gem) = 4df521481819e3285cb14dbe0a266023f68209df96986ccd1216c83134e3ffb7
SIZE (rubygem/amq-client-0.8.3.gem) = 74752

View File

@ -0,0 +1,10 @@
amq-client is a fully-featured, low-level AMQP 0.9.1 client that
runs on Ruby 1.8.7, 1.9.2, REE, Rubinius and JRuby.
It's sweet spot is in serving as foundation for higher-level, more
opinionated AMQP libraries.
It can be used directly by applications code when performance and access
to advanced AMQP protocol features is more important that API convenience.
WWW: https://github.com/ruby-amqp/amq-client