├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── lint.yml │ └── publish.yml ├── .gitignore ├── .markdownlint.yaml ├── .release-please-manifest.json ├── .rubocop.yml ├── CHANGELOG-archive.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── assets └── do_logo.png ├── kitchen-digitalocean.gemspec ├── lib └── kitchen │ └── driver │ ├── digitalocean.rb │ └── digitalocean_version.rb ├── release-please-config.json ├── renovate.json └── spec ├── kitchen └── driver │ └── digitalocean_spec.rb ├── mocks ├── auth_error.txt ├── create.txt ├── delete.txt └── find.txt └── spec_helper.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @test-kitchen/maintainers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.16.1" 3 | } 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/CHANGELOG-archive.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/do_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/assets/do_logo.png -------------------------------------------------------------------------------- /kitchen-digitalocean.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/kitchen-digitalocean.gemspec -------------------------------------------------------------------------------- /lib/kitchen/driver/digitalocean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/lib/kitchen/driver/digitalocean.rb -------------------------------------------------------------------------------- /lib/kitchen/driver/digitalocean_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/lib/kitchen/driver/digitalocean_version.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/kitchen/driver/digitalocean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/kitchen/driver/digitalocean_spec.rb -------------------------------------------------------------------------------- /spec/mocks/auth_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/mocks/auth_error.txt -------------------------------------------------------------------------------- /spec/mocks/create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/mocks/create.txt -------------------------------------------------------------------------------- /spec/mocks/delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/mocks/delete.txt -------------------------------------------------------------------------------- /spec/mocks/find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/mocks/find.txt -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-digitalocean/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------