Sha256: b1ae56af20495663e01d5422133d4c6a6ae9afb18f450c6ff90afa98290c15bc

Contents?: true

Size: 221 Bytes

Versions: 2

Compression:

Stored size: 221 Bytes

Contents

#
# forkoff makes it trivial to do parallel processing with ruby, the following
# prints out each word in a separate process
#

  require 'forkoff'

  %w( hey you ).forkoff!{|word| puts "#{ word } from #{ Process.pid }"}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
forkoff-0.0.0 samples/a.rb
forkoff-0.0.1 samples/a.rb