1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Add rubygem-buftok 0.2.0

BufferedTokenizer takes a delimiter upon instantiation, or acts line-based by
default. It allows input to be spoon-fed from some outside source which receives
arbitrary length datagrams which may-or-may-not contain the token by which
entities are delimited. In this respect it's ideally paired with something like
EventMachine.

WWW: https://github.com/sferik/buftok
RG:  https://rubygems.org/gems/buftok
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2014-08-07 16:31:11 +00:00
parent 8c930e9314
commit 31c2618ff9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364303
4 changed files with 29 additions and 0 deletions

View File

@ -4211,6 +4211,7 @@
SUBDIR += rubygem-blankslate
SUBDIR += rubygem-blockenspiel
SUBDIR += rubygem-bson
SUBDIR += rubygem-buftok
SUBDIR += rubygem-bugspots
SUBDIR += rubygem-builder
SUBDIR += rubygem-builder31

View File

@ -0,0 +1,18 @@
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= buftok
PORTVERSION= 0.2.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Extracts token delimited entities from arbitrary inputs
LICENSE= MIT
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/buftok-0.2.0.gem) = bad760334631e15b8eea608468709d3265e087703b5af0532f6583e277f0fae7
SIZE (rubygem/buftok-0.2.0.gem) = 8192

View File

@ -0,0 +1,8 @@
BufferedTokenizer takes a delimiter upon instantiation, or acts line-based by
default. It allows input to be spoon-fed from some outside source which receives
arbitrary length datagrams which may-or-may-not contain the token by which
entities are delimited. In this respect it's ideally paired with something like
EventMachine.
WWW: https://github.com/sferik/buftok
RG: https://rubygems.org/gems/buftok