Date: Sat, 22 Jun 2013 02:38:31 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321526 - in head/devel: . rubygem-hashery Message-ID: <201306220238.r5M2cVSr044007@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Jun 22 02:38:31 2013 New Revision: 321526 URL: http://svnweb.freebsd.org/changeset/ports/321526 Log: The Hashery is a tight collection of Hash-like classes. Included among its many offerings are the auto-sorting Dictionary class, the efficient LRUHash, the flexible OpenHash and the convenient KeyHash. Nearly every class is a subclass of the CRUDHash which defines a CRUD model on top of Ruby's standard Hash making it a snap to subclass and augment to fit any specific use case. WWW: http://rubyworks.github.com/hashery Added: head/devel/rubygem-hashery/ head/devel/rubygem-hashery/Makefile (contents, props changed) head/devel/rubygem-hashery/distinfo (contents, props changed) head/devel/rubygem-hashery/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 22 02:37:58 2013 (r321525) +++ head/devel/Makefile Sat Jun 22 02:38:31 2013 (r321526) @@ -4069,6 +4069,7 @@ SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-grit + SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie SUBDIR += rubygem-highline SUBDIR += rubygem-hike Added: head/devel/rubygem-hashery/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hashery/Makefile Sat Jun 22 02:38:31 2013 (r321526) @@ -0,0 +1,16 @@ +# Created by: Steve Wills <swills@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= hashery +PORTVERSION= 2.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Hashery is a tight collection of Hash-like classes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/rubygem-hashery/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hashery/distinfo Sat Jun 22 02:38:31 2013 (r321526) @@ -0,0 +1,2 @@ +SHA256 (rubygem/hashery-2.1.0.gem) = d7e079b0da3f3e62c085c0b7b8f27d994cd4c16710f198a2ad98e7a95cf13b27 +SIZE (rubygem/hashery-2.1.0.gem) = 37888 Added: head/devel/rubygem-hashery/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hashery/pkg-descr Sat Jun 22 02:38:31 2013 (r321526) @@ -0,0 +1,7 @@ +The Hashery is a tight collection of Hash-like classes. Included among its many +offerings are the auto-sorting Dictionary class, the efficient LRUHash, the +flexible OpenHash and the convenient KeyHash. Nearly every class is a subclass +of the CRUDHash which defines a CRUD model on top of Ruby's standard Hash +making it a snap to subclass and augment to fit any specific use case. + +WWW: http://rubyworks.github.com/hashery
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306220238.r5M2cVSr044007>