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 / forkify.gemspec
100644 37 lines (32 sloc) 1.528 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{forkify}
  s.version = "0.0.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Lee Hinman"]
  s.date = %q{2009-06-29}
  s.description = %q{forkify.rb makes it easy to process a bunch of data using 'n'
worker processes. It is based off of forkoff and threadify by Ara Howard.
It aims to be safe to use on Ruby 1.8.6+ and Ruby 1.9.1+}
  s.email = ["lee@writequit.org"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
  s.files = ["History.txt", "Manifest.txt", "README.txt", "TODO.txt", "Rakefile", "lib/forkify.rb", "spec/forkify_spec.rb", "examples/a.rb", "examples/b.rb", "examples/c.rb", "examples/d.rb"]
  s.homepage = %q{http://github.com/dakrone/forkify}
  s.rdoc_options = ["--main", "README.txt"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{writequit}
  s.rubygems_version = %q{1.3.4}
  s.summary = %q{forkify.rb makes it easy to process a bunch of data using 'n' worker processes}
  s.test_files = ["test/test_forkify.rb"]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_development_dependency(%q<hoe>, [">= 2.0.0"])
    else
      s.add_dependency(%q<hoe>, [">= 2.0.0"])
    end
  else
    s.add_dependency(%q<hoe>, [">= 2.0.0"])
  end
end