├── .delivery └── project.toml ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .kitchen.dokken.yml ├── .kitchen.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── TESTING.md ├── attributes └── default.rb ├── chefignore ├── metadata.rb ├── recipes ├── _windows.rb └── default.rb ├── resources ├── build_essential.rb └── xcode_command_line_tools.rb ├── spec ├── recipes │ ├── debian_spec.rb │ ├── fedora_spec.rb │ ├── freebsd_spec.rb │ ├── mac_os_x_spec.rb │ ├── omnios_spec.rb │ ├── rhel_spec.rb │ ├── smartos_spec.rb │ ├── solaris2_spec.rb │ └── suse_spec.rb └── spec_helper.rb └── test ├── cookbooks └── test │ ├── metadata.rb │ └── recipes │ └── default.rb └── integration └── default └── default_spec.rb /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.kitchen.dokken.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/_windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/recipes/_windows.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /resources/build_essential.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/resources/build_essential.rb -------------------------------------------------------------------------------- /resources/xcode_command_line_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/resources/xcode_command_line_tools.rb -------------------------------------------------------------------------------- /spec/recipes/debian_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/debian_spec.rb -------------------------------------------------------------------------------- /spec/recipes/fedora_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/fedora_spec.rb -------------------------------------------------------------------------------- /spec/recipes/freebsd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/freebsd_spec.rb -------------------------------------------------------------------------------- /spec/recipes/mac_os_x_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/mac_os_x_spec.rb -------------------------------------------------------------------------------- /spec/recipes/omnios_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/omnios_spec.rb -------------------------------------------------------------------------------- /spec/recipes/rhel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/rhel_spec.rb -------------------------------------------------------------------------------- /spec/recipes/smartos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/smartos_spec.rb -------------------------------------------------------------------------------- /spec/recipes/solaris2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/solaris2_spec.rb -------------------------------------------------------------------------------- /spec/recipes/suse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/recipes/suse_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/test/cookbooks/test/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/test/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /test/integration/default/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/build-essential/HEAD/test/integration/default/default_spec.rb --------------------------------------------------------------------------------