dakrone / forkify

Do work from a pool of processes using forks. Like threadify with processes.

This URL has Read+Write access

dakrone (author)
Fri Aug 14 11:09:45 -0700 2009
commit  8d0bfc11af8ff1bd14b09a03397bb52b64069212
tree    bbe2f4db921d75d40865862430b3561ba92f1941
parent  79fb4c78f5f93a569b3b7e80ced6071e0ce8ddca
forkify / Rakefile
100644 17 lines (11 sloc) 0.256 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/forkify.rb'
 
FORKIFY_VERSION = "0.0.2"
 
Hoe.spec('forkify') do
  version = FORKIFY_VERSION
  developer('Lee Hinman', 'lee@writequit.org')
  rubyforge_name = 'hinmanm'
end
 
 
# vim: syntax=Ruby