├── .github ├── dependabot.yml ├── release.yml └── workflows │ ├── changelog.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .tool-versions ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── docker-compose.yml ├── lib ├── sidekiq_alive.rb └── sidekiq_alive │ ├── config.rb │ ├── helpers.rb │ ├── redis.rb │ ├── redis │ ├── base.rb │ ├── redis_client_gem.rb │ └── redis_gem.rb │ ├── server.rb │ ├── server │ ├── base.rb │ ├── default.rb │ ├── http_server.rb │ └── rack.rb │ ├── version.rb │ └── worker.rb ├── sidekiq_alive.gemspec ├── spec ├── config_spec.rb ├── redis_spec.rb ├── server │ ├── default_spec.rb │ └── rack_spec.rb ├── server_spec.rb ├── sidekiq_alive_spec.rb ├── spec_helper.rb └── worker_spec.rb └── tasks └── version.rake /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.4 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.4.4 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/bin/setup -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/sidekiq_alive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/config.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/helpers.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/redis.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/redis/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/redis/base.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/redis/redis_client_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/redis/redis_client_gem.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/redis/redis_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/redis/redis_gem.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/server.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/server/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/server/base.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/server/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/server/default.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/server/http_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/server/http_server.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/server/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/server/rack.rb -------------------------------------------------------------------------------- /lib/sidekiq_alive/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module SidekiqAlive 4 | VERSION = "2.5.0" 5 | end 6 | -------------------------------------------------------------------------------- /lib/sidekiq_alive/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/lib/sidekiq_alive/worker.rb -------------------------------------------------------------------------------- /sidekiq_alive.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/sidekiq_alive.gemspec -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/redis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/redis_spec.rb -------------------------------------------------------------------------------- /spec/server/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/server/default_spec.rb -------------------------------------------------------------------------------- /spec/server/rack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/server/rack_spec.rb -------------------------------------------------------------------------------- /spec/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/server_spec.rb -------------------------------------------------------------------------------- /spec/sidekiq_alive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/sidekiq_alive_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/spec/worker_spec.rb -------------------------------------------------------------------------------- /tasks/version.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturictus/sidekiq_alive/HEAD/tasks/version.rake --------------------------------------------------------------------------------