├── .gitignore ├── .rspec ├── .travis.yml ├── Appraisals ├── CHANGES.md ├── Gemfile ├── LICENSE ├── README.md ├── gemfiles ├── sidekiq_2_x.gemfile ├── sidekiq_3_x.gemfile ├── sidekiq_4_x.gemfile ├── sidekiq_5_x.gemfile └── sidekiq_edge.gemfile ├── lib ├── sidekiq-bulk.rb └── sidekiq │ └── bulk.rb ├── sidekiq-bulk.gemspec └── spec ├── re_run_friendly_formatter.rb ├── sidekiq_bulk_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/README.md -------------------------------------------------------------------------------- /gemfiles/sidekiq_2_x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/gemfiles/sidekiq_2_x.gemfile -------------------------------------------------------------------------------- /gemfiles/sidekiq_3_x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/gemfiles/sidekiq_3_x.gemfile -------------------------------------------------------------------------------- /gemfiles/sidekiq_4_x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/gemfiles/sidekiq_4_x.gemfile -------------------------------------------------------------------------------- /gemfiles/sidekiq_5_x.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/gemfiles/sidekiq_5_x.gemfile -------------------------------------------------------------------------------- /gemfiles/sidekiq_edge.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/gemfiles/sidekiq_edge.gemfile -------------------------------------------------------------------------------- /lib/sidekiq-bulk.rb: -------------------------------------------------------------------------------- 1 | require "sidekiq/bulk" 2 | -------------------------------------------------------------------------------- /lib/sidekiq/bulk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/lib/sidekiq/bulk.rb -------------------------------------------------------------------------------- /sidekiq-bulk.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/sidekiq-bulk.gemspec -------------------------------------------------------------------------------- /spec/re_run_friendly_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/spec/re_run_friendly_formatter.rb -------------------------------------------------------------------------------- /spec/sidekiq_bulk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/spec/sidekiq_bulk_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aprescott/sidekiq-bulk/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------