├── .circleci └── config.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── simplekiq.rb └── simplekiq │ ├── batch_tracker_job.rb │ ├── batching_job.rb │ ├── orchestration.rb │ ├── orchestration_executor.rb │ ├── orchestration_job.rb │ └── version.rb ├── simplekiq.gemspec ├── spec ├── batching_job_spec.rb ├── orchestration_executor_spec.rb ├── orchestration_job_spec.rb ├── orchestration_spec.rb ├── simplekiq_spec.rb └── spec_helper.rb └── tasks └── ci.rake /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/simplekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq.rb -------------------------------------------------------------------------------- /lib/simplekiq/batch_tracker_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq/batch_tracker_job.rb -------------------------------------------------------------------------------- /lib/simplekiq/batching_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq/batching_job.rb -------------------------------------------------------------------------------- /lib/simplekiq/orchestration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq/orchestration.rb -------------------------------------------------------------------------------- /lib/simplekiq/orchestration_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq/orchestration_executor.rb -------------------------------------------------------------------------------- /lib/simplekiq/orchestration_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/lib/simplekiq/orchestration_job.rb -------------------------------------------------------------------------------- /lib/simplekiq/version.rb: -------------------------------------------------------------------------------- 1 | module Simplekiq 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /simplekiq.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/simplekiq.gemspec -------------------------------------------------------------------------------- /spec/batching_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/batching_job_spec.rb -------------------------------------------------------------------------------- /spec/orchestration_executor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/orchestration_executor_spec.rb -------------------------------------------------------------------------------- /spec/orchestration_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/orchestration_job_spec.rb -------------------------------------------------------------------------------- /spec/orchestration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/orchestration_spec.rb -------------------------------------------------------------------------------- /spec/simplekiq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/simplekiq_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tasks/ci.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doximity/simplekiq/HEAD/tasks/ci.rake --------------------------------------------------------------------------------