Project

sfl

0.91
No commit activity in last 3 years
No release in over 3 years
Spawn For Ruby 1.8
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 2.4.0
 Project Readme

Spawn for Legacy

demo

Kernel.spawn in ruby 1.9 solves all issues on asynchronous executions[1][2]. But ruby 1.8, the legacy version of MRI, is still used on many environments.

This library provides spawn() which is almost perfectly compatible with ruby 1.9's. This library is pure ruby; you don't need to build it.

Install

gem install sfl

How to use

require 'rubygems'
require 'sfl'

spawn 'ls'

If your ruby is 1.9, require 'sfl' doesn't do anything. If your ruby is 1.8, that defines spawn.

How compatible this spawn is?

(I'll put the coverage here later)

Misc.

  • At first I tried to use the name spawn as this gem library name, but the name was already used. The spawn gem library does not mean ruby 1.9's spawn at all.
  • Ruby 1.9's open3 library, based on spawn, is very useful. I would like to port open3 to ruby 1.8 in my future.

Supports

  • (On MacOS) MRI 1.8.6, 1.8.7, 1.9.1, 1.9.2-rc2
  • (On UNIX) MRI 1.8.6, 1.8.7, 1.9.1, 1.9.2pre
  • (On Windows) MRI 1.9.1, 1.9.2pre

Currently there are no supports on:

  • MRI 1.8 on Windows
  • Other Ruby implementations such as JRuby, Rubinius and MacRuby

Authors

Tatsuhiro Ujihisa http://ujihisa.blogspot.com/

Bernard Lambeau http://revision-zero.org/

Kenta Murata http://mrkn.jp/