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:
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
|
@ -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
|
||||
|
|
16
devel/rubygem-hashery/Makefile
Normal file
16
devel/rubygem-hashery/Makefile
Normal 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>
|
2
devel/rubygem-hashery/distinfo
Normal file
2
devel/rubygem-hashery/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (rubygem/hashery-2.1.0.gem) = d7e079b0da3f3e62c085c0b7b8f27d994cd4c16710f198a2ad98e7a95cf13b27
|
||||
SIZE (rubygem/hashery-2.1.0.gem) = 37888
|
7
devel/rubygem-hashery/pkg-descr
Normal file
7
devel/rubygem-hashery/pkg-descr
Normal 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
|
Loading…
Reference in a new issue