├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── deadman-check └── setup ├── deadman_check.gemspec ├── lib ├── deadman_check.rb ├── deadman_check │ └── version.rb ├── deadman_check_global.rb ├── deadman_check_keyset.rb └── deadman_check_switch.rb └── test ├── deadman_check_test.rb ├── fixtures ├── job1.nomad └── job2.nomad └── test_helper.rb /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/bin/console -------------------------------------------------------------------------------- /bin/deadman-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/bin/deadman-check -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/bin/setup -------------------------------------------------------------------------------- /deadman_check.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/deadman_check.gemspec -------------------------------------------------------------------------------- /lib/deadman_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/lib/deadman_check.rb -------------------------------------------------------------------------------- /lib/deadman_check/version.rb: -------------------------------------------------------------------------------- 1 | module DeadmanCheck 2 | VERSION = "0.3.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/deadman_check_global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/lib/deadman_check_global.rb -------------------------------------------------------------------------------- /lib/deadman_check_keyset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/lib/deadman_check_keyset.rb -------------------------------------------------------------------------------- /lib/deadman_check_switch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/lib/deadman_check_switch.rb -------------------------------------------------------------------------------- /test/deadman_check_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/test/deadman_check_test.rb -------------------------------------------------------------------------------- /test/fixtures/job1.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/test/fixtures/job1.nomad -------------------------------------------------------------------------------- /test/fixtures/job2.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/test/fixtures/job2.nomad -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sepulworld/deadman-check/HEAD/test/test_helper.rb --------------------------------------------------------------------------------