1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

IO::Buffer is a fast byte queue which is primarily intended for

non-blocking I/O applications but is suitable wherever buffering is
required.  IO::Buffer is compatible with Ruby 1.8/1.9 and Rubinius.

WWW: https://github.com/tarcieri/iobuffer
This commit is contained in:
Jun Kuriyama 2012-07-10 10:18:13 +00:00
parent 0c7d746d6a
commit e06ee6bd7e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=300714
4 changed files with 28 additions and 0 deletions

View File

@ -3781,6 +3781,7 @@
SUBDIR += rubygem-inline
SUBDIR += rubygem-interact
SUBDIR += rubygem-io-like
SUBDIR += rubygem-iobuffer
SUBDIR += rubygem-jammit
SUBDIR += rubygem-jeweler
SUBDIR += rubygem-jruby-jars

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: rubygem-iobuffer
# Date created: 10 Jul 2012
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= iobuffer
PORTVERSION= 1.1.2
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Gems for iobuffer
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/iobuffer-1.1.2.gem) = 433a397aef5a39246e40171d790e38753fecfdb22f1c37d0846633ea1878759f
SIZE (rubygem/iobuffer-1.1.2.gem) = 9216

View File

@ -0,0 +1,5 @@
IO::Buffer is a fast byte queue which is primarily intended for
non-blocking I/O applications but is suitable wherever buffering is
required. IO::Buffer is compatible with Ruby 1.8/1.9 and Rubinius.
WWW: https://github.com/tarcieri/iobuffer