├── .github └── workflows │ ├── check_changelog.yml │ └── ci.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── wait_for_it.rb └── wait_for_it │ └── version.rb ├── spec ├── fixtures │ ├── fixture_helper.rb │ ├── never_exits.rb │ └── sleep.rb ├── spec_helper.rb └── wait_for_it_spec.rb └── wait_for_it.gemspec /.github/workflows/check_changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/.github/workflows/check_changelog.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/wait_for_it.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/lib/wait_for_it.rb -------------------------------------------------------------------------------- /lib/wait_for_it/version.rb: -------------------------------------------------------------------------------- 1 | class WaitForIt 2 | VERSION = "0.2.1" 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/fixture_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | -------------------------------------------------------------------------------- /spec/fixtures/never_exits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/spec/fixtures/never_exits.rb -------------------------------------------------------------------------------- /spec/fixtures/sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/spec/fixtures/sleep.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/wait_for_it_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/spec/wait_for_it_spec.rb -------------------------------------------------------------------------------- /wait_for_it.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zombocom/wait_for_it/HEAD/wait_for_it.gemspec --------------------------------------------------------------------------------