1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Add a new port: devel/rubygem-io-like

The IO::Like module provides all of the methods of typical IO implementations
  such as File; most importantly the read, write, and seek series of methods.  A
  class which includes IO::Like needs to provide only a few methods in order to
  enable the higher level methods.  Buffering is automatically provided by default
  for the methods which normally provide it in IO.

  WWW:	https://github.com/javanthropus/io-like
This commit is contained in:
TAKATSU Tomonari 2011-08-06 08:01:59 +00:00
parent 39a95ffd03
commit 55365ccf3b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=279003
4 changed files with 36 additions and 0 deletions

View File

@ -3299,6 +3299,7 @@
SUBDIR += rubygem-icalendar
SUBDIR += rubygem-igraph
SUBDIR += rubygem-inline
SUBDIR += rubygem-io-like
SUBDIR += rubygem-jammit
SUBDIR += rubygem-jruby-jars
SUBDIR += rubygem-json

View File

@ -0,0 +1,26 @@
# New ports collection makefile for: rubygem-io-like
# Date created: 2011-08-06
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= io-like
PORTVERSION= 0.3.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= tota@FreeBSD.org
COMMENT= The interface of IO objects to classes providing a few simple methods
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.pre.mk>
.if ${RUBY_VER} == 1.9
BROKEN= does not work with ruby 1.9
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/io-like-0.3.0.gem) = d3fc128940d11704ac0d9bc0d46a2b30be162aca030273e690b1bfca8506d612
SIZE (rubygem/io-like-0.3.0.gem) = 31744

View File

@ -0,0 +1,7 @@
The IO::Like module provides all of the methods of typical IO implementations
such as File; most importantly the read, write, and seek series of methods. A
class which includes IO::Like needs to provide only a few methods in order to
enable the higher level methods. Buffering is automatically provided by default
for the methods which normally provide it in IO.
WWW: https://github.com/javanthropus/io-like