├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ └── stale.yml ├── .gitignore ├── .rspec ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── compose.yml ├── lib └── sidekiq │ ├── batch.rb │ └── batch │ ├── callback.rb │ ├── extension │ └── worker.rb │ ├── middleware.rb │ ├── status.rb │ └── version.rb ├── sidekiq-batch.gemspec └── spec ├── integration ├── integration.rb ├── nested.rb ├── simple.rb └── workflow.rb ├── integration_helper.rb ├── sidekiq ├── batch │ ├── callback_spec.rb │ ├── flow_spec.rb │ ├── middleware_spec.rb │ └── status_spec.rb └── batch_spec.rb ├── spec_helper.rb └── support └── sample_callback.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/Rakefile -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/compose.yml -------------------------------------------------------------------------------- /lib/sidekiq/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch.rb -------------------------------------------------------------------------------- /lib/sidekiq/batch/callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch/callback.rb -------------------------------------------------------------------------------- /lib/sidekiq/batch/extension/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch/extension/worker.rb -------------------------------------------------------------------------------- /lib/sidekiq/batch/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch/middleware.rb -------------------------------------------------------------------------------- /lib/sidekiq/batch/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch/status.rb -------------------------------------------------------------------------------- /lib/sidekiq/batch/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/lib/sidekiq/batch/version.rb -------------------------------------------------------------------------------- /sidekiq-batch.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/sidekiq-batch.gemspec -------------------------------------------------------------------------------- /spec/integration/integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/integration/integration.rb -------------------------------------------------------------------------------- /spec/integration/nested.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/integration/nested.rb -------------------------------------------------------------------------------- /spec/integration/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/integration/simple.rb -------------------------------------------------------------------------------- /spec/integration/workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/integration/workflow.rb -------------------------------------------------------------------------------- /spec/integration_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/integration_helper.rb -------------------------------------------------------------------------------- /spec/sidekiq/batch/callback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/sidekiq/batch/callback_spec.rb -------------------------------------------------------------------------------- /spec/sidekiq/batch/flow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/sidekiq/batch/flow_spec.rb -------------------------------------------------------------------------------- /spec/sidekiq/batch/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/sidekiq/batch/middleware_spec.rb -------------------------------------------------------------------------------- /spec/sidekiq/batch/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/sidekiq/batch/status_spec.rb -------------------------------------------------------------------------------- /spec/sidekiq/batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/sidekiq/batch_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/sample_callback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breamware/sidekiq-batch/HEAD/spec/support/sample_callback.rb --------------------------------------------------------------------------------