This gem aims at being a simple and reliable solution for controlling

external programs running in the background on any Ruby / OS
combination.

The code originated in the selenium-webdriver gem, but should prove
useful as a standalone library.

WWW: https://github.com/jarib/childprocess
This commit is contained in:
Greg Larkin 2012-05-11 01:49:38 +00:00
parent 25c1ff8868
commit 463afd887f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=296403
4 changed files with 33 additions and 0 deletions

View File

@ -3673,6 +3673,7 @@
SUBDIR += rubygem-bson
SUBDIR += rubygem-bugspots
SUBDIR += rubygem-builder
SUBDIR += rubygem-childprocess
SUBDIR += rubygem-chronic
SUBDIR += rubygem-classifier
SUBDIR += rubygem-clio

View File

@ -0,0 +1,22 @@
# Ports collection makefile for: childprocess
# Date created: 10 May 2012
# Whom: Greg Larkin <glarkin@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= childprocess
PORTVERSION= 0.3.2
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= glarkin@FreeBSD.org
COMMENT= External background process controller
RUN_DEPENDS= rubygem-ffi>=1.0.6:${PORTSDIR}/devel/rubygem-ffi
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/childprocess-0.3.2.gem) = 78d471ac236c3316b55b23dd349f7ad4723582c5563c3b1fcd07cde80328d200
SIZE (rubygem/childprocess-0.3.2.gem) = 24064

View File

@ -0,0 +1,8 @@
This gem aims at being a simple and reliable solution for controlling
external programs running in the background on any Ruby / OS
combination.
The code originated in the selenium-webdriver gem, but should prove
useful as a standalone library.
WWW: https://github.com/jarib/childprocess