From owner-svn-ports-all@FreeBSD.ORG Sat Jun 22 02:38:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7AC02423; Sat, 22 Jun 2013 02:38:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 524F616E9; Sat, 22 Jun 2013 02:38:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5M2cWbR044012; Sat, 22 Jun 2013 02:38:32 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5M2cVSr044007; Sat, 22 Jun 2013 02:38:31 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201306220238.r5M2cVSr044007@svn.freebsd.org> From: Steve Wills Date: Sat, 22 Jun 2013 02:38:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321526 - in head/devel: . rubygem-hashery X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2013 02:38:32 -0000 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 +# $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 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