├── .github ├── dependabot.yml └── workflows │ └── ruby.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── pmap.rb └── pmap │ ├── thread_pool.rb │ └── version.rb ├── pmap.gemspec └── test └── pmap_test.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.gem 3 | .bundle 4 | .rvmrc 5 | Gemfile.lock 6 | pkg/* 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/pmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/lib/pmap.rb -------------------------------------------------------------------------------- /lib/pmap/thread_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/lib/pmap/thread_pool.rb -------------------------------------------------------------------------------- /lib/pmap/version.rb: -------------------------------------------------------------------------------- 1 | module Pmap 2 | VERSION = "1.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /pmap.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/pmap.gemspec -------------------------------------------------------------------------------- /test/pmap_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruceadams/pmap/HEAD/test/pmap_test.rb --------------------------------------------------------------------------------