svn commit: r323936 - in head/databases: . rubygem-redis-namespace
Steve Wills
swills at FreeBSD.org
Tue Jul 30 03:10:04 UTC 2013
Author: swills
Date: Tue Jul 30 03:10:03 2013
New Revision: 323936
URL: http://svnweb.freebsd.org/changeset/ports/323936
Log:
Adds a Redis::Namespace class which can be used to namespace calls to Redis.
This is useful when using a single instance of Redis with multiple, different
applications.
WWW: http://github.com/resque/redis-namespace
Added:
head/databases/rubygem-redis-namespace/
head/databases/rubygem-redis-namespace/Makefile (contents, props changed)
head/databases/rubygem-redis-namespace/pkg-descr (contents, props changed)
Modified:
head/databases/Makefile
Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile Tue Jul 30 02:46:59 2013 (r323935)
+++ head/databases/Makefile Tue Jul 30 03:10:03 2013 (r323936)
@@ -863,6 +863,7 @@
SUBDIR += rubygem-pg
SUBDIR += rubygem-rbase
SUBDIR += rubygem-redis
+ SUBDIR += rubygem-redis-namespace
SUBDIR += rubygem-rubyrep
SUBDIR += rubygem-sqlite3
SUBDIR += rubygem-sqlite3-ruby
Added: head/databases/rubygem-redis-namespace/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rubygem-redis-namespace/Makefile Tue Jul 30 03:10:03 2013 (r323936)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills <swills at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= redis-namespace
+PORTVERSION= 1.3.0
+CATEGORIES= databases rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Ruby client class for Redis with namespace support
+
+RUN_DEPENDS= rubygem-redis>=3.0.0:${PORTSDIR}/databases/rubygem-redis
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
Added: head/databases/rubygem-redis-namespace/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rubygem-redis-namespace/pkg-descr Tue Jul 30 03:10:03 2013 (r323936)
@@ -0,0 +1,5 @@
+Adds a Redis::Namespace class which can be used to namespace calls to Redis.
+This is useful when using a single instance of Redis with multiple, different
+applications.
+
+WWW: http://github.com/resque/redis-namespace
More information about the svn-ports-head
mailing list