├── .gitignore ├── .kitchen.docker.yml ├── .kitchen.vagrant.yml ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── attributes ├── default.rb └── php.rb ├── libraries ├── blackfire_collector_mock.rb └── blackfire_versions_helper.rb ├── metadata.rb ├── recipes ├── agent.rb ├── default.rb ├── mock.rb ├── php.rb └── repository.rb ├── spec └── default_spec.rb ├── templates └── default │ ├── agent.erb │ └── blackfire.ini.erb └── test └── integration ├── default └── serverspec │ └── install_spec.rb └── docker └── serverspec └── install_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/.kitchen.docker.yml -------------------------------------------------------------------------------- /.kitchen.vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/.kitchen.vagrant.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/Rakefile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/attributes/php.rb -------------------------------------------------------------------------------- /libraries/blackfire_collector_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/libraries/blackfire_collector_mock.rb -------------------------------------------------------------------------------- /libraries/blackfire_versions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/libraries/blackfire_versions_helper.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/recipes/agent.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/recipes/mock.rb -------------------------------------------------------------------------------- /recipes/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/recipes/php.rb -------------------------------------------------------------------------------- /recipes/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/recipes/repository.rb -------------------------------------------------------------------------------- /spec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/spec/default_spec.rb -------------------------------------------------------------------------------- /templates/default/agent.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/templates/default/agent.erb -------------------------------------------------------------------------------- /templates/default/blackfire.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/templates/default/blackfire.ini.erb -------------------------------------------------------------------------------- /test/integration/default/serverspec/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/test/integration/default/serverspec/install_spec.rb -------------------------------------------------------------------------------- /test/integration/docker/serverspec/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackfireio/blackfire-cookbook/HEAD/test/integration/docker/serverspec/install_spec.rb --------------------------------------------------------------------------------