├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── example ├── Rakefile └── job.rb ├── lib ├── resque-batched-job.rb └── resque │ ├── batched_job.rb │ └── plugins │ ├── batched_job.rb │ └── batched_job │ └── version.rb ├── resque-batched-job.gemspec └── test ├── test_batched_job.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/Rakefile -------------------------------------------------------------------------------- /example/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/example/Rakefile -------------------------------------------------------------------------------- /example/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/example/job.rb -------------------------------------------------------------------------------- /lib/resque-batched-job.rb: -------------------------------------------------------------------------------- 1 | require 'resque/batched_job' -------------------------------------------------------------------------------- /lib/resque/batched_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/lib/resque/batched_job.rb -------------------------------------------------------------------------------- /lib/resque/plugins/batched_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/lib/resque/plugins/batched_job.rb -------------------------------------------------------------------------------- /lib/resque/plugins/batched_job/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/lib/resque/plugins/batched_job/version.rb -------------------------------------------------------------------------------- /resque-batched-job.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/resque-batched-job.gemspec -------------------------------------------------------------------------------- /test/test_batched_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/test/test_batched_job.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drfeelngood/resque-batched-job/HEAD/test/test_helper.rb --------------------------------------------------------------------------------