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
This commit is contained in:
Steve Wills 2013-06-22 02:38:31 +00:00
parent dc6047f41e
commit 017de52202
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=321526
4 changed files with 26 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/hashery-2.1.0.gem) = d7e079b0da3f3e62c085c0b7b8f27d994cd4c16710f198a2ad98e7a95cf13b27
SIZE (rubygem/hashery-2.1.0.gem) = 37888

View file

@ -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