├── .gitignore ├── .travis.yml ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── forker.gemspec ├── lib ├── forker.rb └── forker │ └── version.rb └── spec ├── forker_spec.rb └── harness /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/Rakefile -------------------------------------------------------------------------------- /forker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/forker.gemspec -------------------------------------------------------------------------------- /lib/forker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/lib/forker.rb -------------------------------------------------------------------------------- /lib/forker/version.rb: -------------------------------------------------------------------------------- 1 | module Forker 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/forker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/spec/forker_spec.rb -------------------------------------------------------------------------------- /spec/harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmarini/forker/HEAD/spec/harness --------------------------------------------------------------------------------