public
Description: Gem for processing collections over a number of threads.
Homepage: http://peteonrails.lighthouseapp.com/projects/11058-threaded-collections/overview
Clone URL: git://github.com/peteonrails/threadedcollections.git
Peter Jackson (author)
Thu May 15 13:38:53 -0700 2008
threadedcollections / threadedcollections.gemspec
100644 13 lines (13 sloc) 0.709 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
spec = Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "threaded-collections"
    s.version = "0.1.0"
    s.author = "Peter Jackson"
    s.email = "pete @nospam@ peteonrails.com"
    s.summary = "A package for manipulating collections over many threads"
    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']
    s.require_path = "lib"
    s.test_files = ['tests/threaded_collections_test.rb']
    s.has_rdoc = true
    s.extra_rdoc_files = ["README"]
end