├── .github ├── dependabot.yml └── workflows │ ├── linters.yml │ └── unit.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── README.md ├── Rakefile ├── kitchen-habitat.gemspec ├── lib ├── kitchen-habitat │ └── version.rb └── kitchen │ └── provisioner │ └── habitat.rb ├── renovate.json └── spec ├── kitchen └── provisioner │ └── habitat_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | --- 2 | AllCops: 3 | TargetRubyVersion: 2.5 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/Rakefile -------------------------------------------------------------------------------- /kitchen-habitat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/kitchen-habitat.gemspec -------------------------------------------------------------------------------- /lib/kitchen-habitat/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/lib/kitchen-habitat/version.rb -------------------------------------------------------------------------------- /lib/kitchen/provisioner/habitat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/lib/kitchen/provisioner/habitat.rb -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/kitchen/provisioner/habitat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/spec/kitchen/provisioner/habitat_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/test-kitchen/kitchen-habitat/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------