New port, rubygem-fast_blank: Fast string blank implementation

Adding this because it is a dependency of the upcoming www/mastodon port.

WWW: https://github.com/SamSaffron/fast_blank/

Approved by:	swills (mentor, implicit)
This commit is contained in:
Joseph Mingrone 2017-04-10 20:43:01 +00:00
parent fa1d54ae4d
commit 01b96bbfe7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438209
4 changed files with 26 additions and 0 deletions

View file

@ -5236,6 +5236,7 @@
SUBDIR += rubygem-extras
SUBDIR += rubygem-facets
SUBDIR += rubygem-faraday_middleware-multi_json
SUBDIR += rubygem-fast_blank
SUBDIR += rubygem-fast-stemmer
SUBDIR += rubygem-fast_gettext
SUBDIR += rubygem-fast_stack

View file

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= fast_blank
PORTVERSION= 1.0.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= jrm@FreeBSD.org
COMMENT= Fast String blank implementation
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
USE_RUBY= yes
USES= gem
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1491856076
SHA256 (rubygem/fast_blank-1.0.0.gem) = a67c93dbcb8c34ba40973688e4b600b640760503362f3aeb63b37ebe3d8d419b
SIZE (rubygem/fast_blank-1.0.0.gem) = 7680

View file

@ -0,0 +1,5 @@
fast_blank provides a C-optimized method for determining if a string is blank.
According to the author, it is about 1.2 and 20 times faster than the Active
Support implementation.
WWW: https://github.com/SamSaffron/fast_blank/