├── .delivery └── project.toml ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .kitchen.dokken.yml ├── .kitchen.yml ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── TESTING.md ├── attributes └── default.rb ├── chefignore ├── libraries ├── helpers.rb └── matchers.rb ├── metadata.rb ├── recipes ├── default.rb └── json_file.rb ├── resources └── default.rb ├── spec ├── spec_helper.rb └── unit │ ├── helpers_spec.rb │ ├── recipes │ └── json_file_spec.rb │ ├── test_handler.rb │ └── test_handler1.rb └── test └── fixtures └── cookbooks └── test ├── files └── my_handler.rb ├── libraries └── my_library_handler.rb ├── metadata.rb └── recipes └── default.rb /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.kitchen.dokken.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/chefignore -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/libraries/matchers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/recipes/json_file.rb -------------------------------------------------------------------------------- /resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/resources/default.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/spec/unit/helpers_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/json_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/spec/unit/recipes/json_file_spec.rb -------------------------------------------------------------------------------- /spec/unit/test_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/spec/unit/test_handler.rb -------------------------------------------------------------------------------- /spec/unit/test_handler1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/spec/unit/test_handler1.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/files/my_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/test/fixtures/cookbooks/test/files/my_handler.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/libraries/my_library_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/test/fixtures/cookbooks/test/libraries/my_library_handler.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test' 2 | version '1.0.0' 3 | 4 | depends 'chef_handler' 5 | -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef_handler/HEAD/test/fixtures/cookbooks/test/recipes/default.rb --------------------------------------------------------------------------------