├── .gitignore ├── .rubocop.yml ├── .yardopts ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── sized_parallel.rb └── sized_parallel │ ├── pool.rb │ ├── task.rb │ └── version.rb ├── sized_parallel.gemspec └── test ├── 000_compile.rb ├── 001_sized_parallel.rb ├── 002_pool.rb ├── 003_task.rb ├── 004_complicated.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sized_parallel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/lib/sized_parallel.rb -------------------------------------------------------------------------------- /lib/sized_parallel/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/lib/sized_parallel/pool.rb -------------------------------------------------------------------------------- /lib/sized_parallel/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/lib/sized_parallel/task.rb -------------------------------------------------------------------------------- /lib/sized_parallel/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/lib/sized_parallel/version.rb -------------------------------------------------------------------------------- /sized_parallel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/sized_parallel.gemspec -------------------------------------------------------------------------------- /test/000_compile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/000_compile.rb -------------------------------------------------------------------------------- /test/001_sized_parallel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/001_sized_parallel.rb -------------------------------------------------------------------------------- /test/002_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/002_pool.rb -------------------------------------------------------------------------------- /test/003_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/003_task.rb -------------------------------------------------------------------------------- /test/004_complicated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/004_complicated.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyouhei/sized_parallel/HEAD/test/test_helper.rb --------------------------------------------------------------------------------