-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
357 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Utilities |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[FC048] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
.vagrant | ||
Berksfile.lock | ||
*~ | ||
*# | ||
.#* | ||
\#*# | ||
.*.sw[a-z] | ||
*.un~ | ||
|
||
Berksfile.lock | ||
# Bundler | ||
Gemfile.lock | ||
.vagrant | ||
Vagrantfile | ||
.bundle | ||
.coverage | ||
.kitchen | ||
.kitchen.local.yml | ||
bin/* | ||
.bundle/* | ||
|
||
.kitchen/ | ||
.kitchen.local.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,38 @@ | ||
--- | ||
driver_plugin: vagrant | ||
driver_config: | ||
require_chef_omnibus: true | ||
driver: | ||
name: vagrant | ||
|
||
provisioner: | ||
name: chef_zero | ||
solo_rb: | ||
ssl_verify_mode: verify_peer | ||
|
||
platforms: | ||
- name: ubuntu-12.04 | ||
run_list: | ||
- recipe[apt] | ||
|
||
- name: ubuntu-14.04 | ||
run_list: | ||
- recipe[apt] | ||
|
||
suites: | ||
- name: default | ||
run_list: | ||
- recipe[pdepend::default] | ||
- name: pear | ||
- name: default_pear | ||
run_list: | ||
- recipe[pdepend::default] | ||
attributes: | ||
pdepend: | ||
install_method: pear | ||
- name: composer | ||
- name: default_composer | ||
run_list: | ||
- recipe[pdepend::default] | ||
attributes: | ||
pdepend: | ||
install_method: composer | ||
- name: phar | ||
- name: default_phar | ||
run_list: | ||
- recipe[pdepend::default] | ||
attributes: | ||
pdepend: | ||
install_method: phar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
language: ruby | ||
# install the stable release of the Chef Development Kit (ChefDK) | ||
# use chef-current-precise to install the pre-release | ||
addons: | ||
apt: | ||
sources: | ||
- chef-stable-precise | ||
packages: | ||
- chefdk | ||
|
||
rvm: | ||
- 2.0.0 | ||
- 2.1.0 | ||
services: docker | ||
|
||
# https://docs.travis-ci.com/user/customizing-the-build/#Skipping-the-Installation-Step | ||
install: true | ||
|
||
before_script: | ||
- bundle exec berks install | ||
- eval "$(/opt/chefdk/bin/chef shell-init bash)" # make ChefDK's Ruby the default | ||
- chef --version | ||
- chef exec berks install | ||
|
||
script: | ||
- bundle exec rake travis | ||
- chef exec rake travis | ||
|
||
branches: | ||
only: | ||
- master | ||
- /^release\/.*$/ | ||
- /^feature\/.*$/ | ||
- /^bugfix\/.*$/ | ||
|
||
notifications: | ||
email: | ||
- dev@escapestudios.com | ||
- development@davidjoos.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source 'https://supermarket.getchef.com' | ||
source 'https://supermarket.chef.io' | ||
|
||
metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
[![Build Status](https://secure.travis-ci.org/escapestudios-cookbooks/pdepend.png)](http://travis-ci.org/escapestudios-cookbooks/pdepend) | ||
[![Build Status](https://travis-ci.org/djoos-cookbooks/pdepend.png)](http://travis-ci.org/djoos-cookbooks/pdepend) | ||
|
||
Description | ||
=========== | ||
# pdepend cookbook | ||
|
||
## Description | ||
|
||
This cookbook provides an easy way to install pdepend, PHP_Depend. | ||
|
||
More information? | ||
http://pdepend.org/ | ||
|
||
Requirements | ||
============ | ||
## Requirements | ||
|
||
## Cookbooks: | ||
### Cookbooks: | ||
|
||
* php | ||
* composer | ||
|
||
## Platforms: | ||
### Platforms: | ||
|
||
* Ubuntu | ||
* Debian | ||
|
@@ -26,8 +26,7 @@ Requirements | |
* Scientific | ||
* Amazon | ||
|
||
Attributes | ||
========== | ||
## Attributes | ||
|
||
* `node['pdepend']['install_method']` - Installation method, "pear", "composer" or "phar" defaults to "pear" | ||
* `node['pdepend']['version']` - The pdepend version that will be installed, defaults to "latest" | ||
|
@@ -37,22 +36,22 @@ Usage | |
===== | ||
|
||
1) include `recipe[pdepend]` in a run list | ||
2) | ||
change the attributes | ||
--- OR --- | ||
override the attribute on a higher level (http://wiki.opscode.com/display/chef/Attributes#Attributes-AttributesPrecedence) | ||
2) change the attributes | ||
--- OR --- | ||
[override the attribute on a higher level](http://wiki.opscode.com/display/chef/Attributes#Attributes-AttributesPrecedence) | ||
|
||
References | ||
========== | ||
## References | ||
|
||
* [pdepend home page] (http://pdepend.org/) | ||
|
||
License and Authors | ||
=================== | ||
## License and Authors | ||
|
||
Author: David Joos <[email protected]> | ||
Copyright: 2016, David Joos | ||
|
||
Author: David Joos <[email protected]> | ||
Author: Escape Studios Development <[email protected]> | ||
Copyright: 2013-2014, Escape Studios | ||
Copyright: 2013-2015, Escape Studios | ||
|
||
Unless otherwise noted, all files are released under the MIT license, | ||
possible exceptions will contain licensing information in them. | ||
|
Oops, something went wrong.