├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── sidekiq_8.gemfile └── sidekiq_head.gemfile ├── lib ├── sidekiq-expiring-jobs.rb ├── sidekiq_expiring_jobs.rb └── sidekiq_expiring_jobs │ ├── middleware.rb │ └── version.rb ├── sidekiq-expiring-jobs.gemspec └── test ├── jobs.rb ├── sidekiq_expiring_jobs_test.rb ├── sidekiq_initializer.rb └── test_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/sidekiq_8.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/gemfiles/sidekiq_8.gemfile -------------------------------------------------------------------------------- /gemfiles/sidekiq_head.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/gemfiles/sidekiq_head.gemfile -------------------------------------------------------------------------------- /lib/sidekiq-expiring-jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/lib/sidekiq-expiring-jobs.rb -------------------------------------------------------------------------------- /lib/sidekiq_expiring_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/lib/sidekiq_expiring_jobs.rb -------------------------------------------------------------------------------- /lib/sidekiq_expiring_jobs/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/lib/sidekiq_expiring_jobs/middleware.rb -------------------------------------------------------------------------------- /lib/sidekiq_expiring_jobs/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module SidekiqExpiringJobs 4 | VERSION = "0.2.0" 5 | end 6 | -------------------------------------------------------------------------------- /sidekiq-expiring-jobs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/sidekiq-expiring-jobs.gemspec -------------------------------------------------------------------------------- /test/jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/test/jobs.rb -------------------------------------------------------------------------------- /test/sidekiq_expiring_jobs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/test/sidekiq_expiring_jobs_test.rb -------------------------------------------------------------------------------- /test/sidekiq_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/test/sidekiq_initializer.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/sidekiq-expiring-jobs/HEAD/test/test_helper.rb --------------------------------------------------------------------------------