├── .gitignore ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── VERSION.markdown ├── bin ├── tork ├── tork-driver ├── tork-engine ├── tork-herald ├── tork-master ├── tork-notify ├── tork-remote └── tork-runner ├── lib └── tork │ ├── bridge.rb │ ├── cliapp.rb │ ├── config.rb │ ├── config │ ├── bundler │ │ ├── detect.rb │ │ └── master.rb │ ├── coverage │ │ ├── master.rb │ │ └── worker.rb │ ├── cucumber │ │ ├── detect.rb │ │ ├── driver.rb │ │ └── worker.rb │ ├── devise │ │ ├── detect.rb │ │ ├── onfork.rb │ │ └── worker.rb │ ├── dotlog │ │ └── onfork.rb │ ├── factory_girl │ │ ├── detect.rb │ │ ├── onfork.rb │ │ └── worker.rb │ ├── logdir │ │ └── onfork.rb │ ├── parallel_tests │ │ └── worker.rb │ ├── rails │ │ ├── detect.rb │ │ ├── driver.rb │ │ ├── master.rb │ │ └── worker.rb │ ├── rspec-rails │ │ ├── detect.rb │ │ ├── driver.rb │ │ └── master.rb │ ├── spec │ │ ├── config.rb │ │ ├── detect.rb │ │ ├── driver.rb │ │ ├── master.rb │ │ └── worker.rb │ └── test │ │ ├── config.rb │ │ ├── detect.rb │ │ ├── driver.rb │ │ ├── master.rb │ │ └── worker.rb │ ├── driver.rb │ ├── engine.rb │ ├── master.rb │ ├── server.rb │ └── version.rb ├── man └── man0 │ ├── README.markdown │ └── VERSION.markdown └── tork.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/VERSION.markdown -------------------------------------------------------------------------------- /bin/tork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork -------------------------------------------------------------------------------- /bin/tork-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-driver -------------------------------------------------------------------------------- /bin/tork-engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-engine -------------------------------------------------------------------------------- /bin/tork-herald: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-herald -------------------------------------------------------------------------------- /bin/tork-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-master -------------------------------------------------------------------------------- /bin/tork-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-notify -------------------------------------------------------------------------------- /bin/tork-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-remote -------------------------------------------------------------------------------- /bin/tork-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/bin/tork-runner -------------------------------------------------------------------------------- /lib/tork/bridge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/bridge.rb -------------------------------------------------------------------------------- /lib/tork/cliapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/cliapp.rb -------------------------------------------------------------------------------- /lib/tork/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config.rb -------------------------------------------------------------------------------- /lib/tork/config/bundler/detect.rb: -------------------------------------------------------------------------------- 1 | ENV['TORK_CONFIGS'] += ':bundler' if Dir['Gemfile{,.lock}'].any? 2 | -------------------------------------------------------------------------------- /lib/tork/config/bundler/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/bundler/master.rb -------------------------------------------------------------------------------- /lib/tork/config/coverage/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/coverage/master.rb -------------------------------------------------------------------------------- /lib/tork/config/coverage/worker.rb: -------------------------------------------------------------------------------- 1 | Coverage.start 2 | -------------------------------------------------------------------------------- /lib/tork/config/cucumber/detect.rb: -------------------------------------------------------------------------------- 1 | ENV['TORK_CONFIGS'] += ':cucumber' if File.directory? 'features' 2 | -------------------------------------------------------------------------------- /lib/tork/config/cucumber/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/cucumber/driver.rb -------------------------------------------------------------------------------- /lib/tork/config/cucumber/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/cucumber/worker.rb -------------------------------------------------------------------------------- /lib/tork/config/devise/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/devise/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/devise/onfork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/devise/onfork.rb -------------------------------------------------------------------------------- /lib/tork/config/devise/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/devise/worker.rb -------------------------------------------------------------------------------- /lib/tork/config/dotlog/onfork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/dotlog/onfork.rb -------------------------------------------------------------------------------- /lib/tork/config/factory_girl/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/factory_girl/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/factory_girl/onfork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/factory_girl/onfork.rb -------------------------------------------------------------------------------- /lib/tork/config/factory_girl/worker.rb: -------------------------------------------------------------------------------- 1 | FactoryGirl.find_definitions 2 | -------------------------------------------------------------------------------- /lib/tork/config/logdir/onfork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/logdir/onfork.rb -------------------------------------------------------------------------------- /lib/tork/config/parallel_tests/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/parallel_tests/worker.rb -------------------------------------------------------------------------------- /lib/tork/config/rails/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rails/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/rails/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rails/driver.rb -------------------------------------------------------------------------------- /lib/tork/config/rails/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rails/master.rb -------------------------------------------------------------------------------- /lib/tork/config/rails/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rails/worker.rb -------------------------------------------------------------------------------- /lib/tork/config/rspec-rails/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rspec-rails/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/rspec-rails/driver.rb: -------------------------------------------------------------------------------- 1 | Tork::Driver::REABSORB_FILE_GREPS.push /\brails_helper\.rb$/ 2 | -------------------------------------------------------------------------------- /lib/tork/config/rspec-rails/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/rspec-rails/master.rb -------------------------------------------------------------------------------- /lib/tork/config/spec/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/spec/config.rb -------------------------------------------------------------------------------- /lib/tork/config/spec/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/spec/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/spec/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/spec/driver.rb -------------------------------------------------------------------------------- /lib/tork/config/spec/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/spec/master.rb -------------------------------------------------------------------------------- /lib/tork/config/spec/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/spec/worker.rb -------------------------------------------------------------------------------- /lib/tork/config/test/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/test/config.rb -------------------------------------------------------------------------------- /lib/tork/config/test/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/test/detect.rb -------------------------------------------------------------------------------- /lib/tork/config/test/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/test/driver.rb -------------------------------------------------------------------------------- /lib/tork/config/test/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/test/master.rb -------------------------------------------------------------------------------- /lib/tork/config/test/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/config/test/worker.rb -------------------------------------------------------------------------------- /lib/tork/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/driver.rb -------------------------------------------------------------------------------- /lib/tork/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/engine.rb -------------------------------------------------------------------------------- /lib/tork/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/master.rb -------------------------------------------------------------------------------- /lib/tork/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/lib/tork/server.rb -------------------------------------------------------------------------------- /lib/tork/version.rb: -------------------------------------------------------------------------------- 1 | module Tork 2 | VERSION = "20.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /man/man0/README.markdown: -------------------------------------------------------------------------------- 1 | ../../README.markdown -------------------------------------------------------------------------------- /man/man0/VERSION.markdown: -------------------------------------------------------------------------------- 1 | ../../VERSION.markdown -------------------------------------------------------------------------------- /tork.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunaku/tork/HEAD/tork.gemspec --------------------------------------------------------------------------------