├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── executor.gemspec ├── lib ├── executor.rb └── executor │ └── version.rb └── spec ├── executor_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /executor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/executor.gemspec -------------------------------------------------------------------------------- /lib/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/lib/executor.rb -------------------------------------------------------------------------------- /lib/executor/version.rb: -------------------------------------------------------------------------------- 1 | module Executor 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/executor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/spec/executor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastycode/executor/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------