peteonrails / threadedcollections

Gem for processing collections over a number of threads.

Peter Jackson (author)
Thu May 15 13:38:53 -0700 2008
threadedcollections / threadedcollections.gemspec
1c6db26d » Peter Jackson 2008-05-07 Adding a gemspec, fixing th... 1 spec = Gem::Specification.new do |s|
2 s.platform = Gem::Platform::RUBY
3 s.name = "threaded-collections"
4 s.version = "0.1.0"
5 s.author = "Peter Jackson"
6 s.email = "pete @nospam@ peteonrails.com"
7 s.summary = "A package for manipulating collections over many threads"
8 s.files = ['lib/threaded_collections.rb', 'lib/threaded-collections.rb', 'lib/threaded_collections/threaded_collections.rb', 'test/threaded_collections_test.rb', 'LICENSE', 'Rakefile', 'README', 'threadedcollections.gemspec']
9 s.require_path = "lib"
797759ee » Peter Jackson 2008-05-07 Removing Dir.glob from gems... 10 s.test_files = ['tests/threaded_collections_test.rb']
1c6db26d » Peter Jackson 2008-05-07 Adding a gemspec, fixing th... 11 s.has_rdoc = true
12 s.extra_rdoc_files = ["README"]
f5e7b2eb » Peter Jackson 2008-05-15 added a space to force an u... 13 end