Installs the phantomjs cookbook and necessary packages. This repository also features a full test suite!
As of version 1.0.0, this cookbook is Chef 11!+
Add the phantomjs
cookbook to your Berksfile
:
cookbook 'phantomjs'
or install directly with knife:
$ knife cookbook site install phantomjs
Add the cookbook to your run_list
in a node or role:
"run_list": [
"recipe[phantomjs::default]"
]
or include it in a recipe:
# other_cookbook/metadata.rb
# ...
depends 'phantomjs'
# other_cookbook/recipes/default.rb
# ...
include_recipe 'phantomjs::default'
All attributes are namespaced under node['phantomjs']
.
Attribute | Description | Example | Default |
---|---|---|---|
version | The version to install | 1.0.0 | 1.9.2 |
packages | The supporting packages | ['apache2'] | (varies) |
checksum | The checksum of the download | abc123 | nil |
src_dir | Location for the download | /src | /usr/local/src |
base_url | URL for download | http://example.com/ | https://phantomjs.googlecode.com/files |
basename | Name of the package | phantomjs-1.0.0-x86 | (varies) |
-
Fork the project
-
Create a feature branch (i.e.
add_feature_x
) -
Make your changes
-
Write or change specs as necessary
-
Run the tests:
$ bundle exec strainer test
-
Submit a pull request on github
- Author: Seth Vargo ([email protected])
Copyright 2012-2013, Seth Vargo
Copyright 2012-2013, CustomInk, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.