diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..7b9e89d --- /dev/null +++ b/metadata.json @@ -0,0 +1,32 @@ +{ + "name": "forever", + "description": "Chef cookbook for running node apps using forever.", + "long_description": "See README.md", + "maintainer": "David Radcliffe", + "maintainer_email": "david@trabian.com", + "license": "MIT", + "platforms": { + "redhat": ">= 0.0.0", + "centos": ">= 0.0.0" + }, + "dependencies": { + "nodejs": "latest" + }, + "recommendations": { + }, + "suggestions": { + }, + "conflicting": { + }, + "providing": { + }, + "replacing": { + }, + "attributes": { + }, + "groupings": { + }, + "recipes": { + }, + "version": "0.1.2" +} \ No newline at end of file diff --git a/metadata.rb b/metadata.rb index 03c26ae..b9eb5cc 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,9 +4,9 @@ license "MIT" description "Chef cookbook for running node apps using forever." long_description "See README.md" -version "0.1.1" +version "0.1.2" supports "redhat" supports "centos" -depends "npm" \ No newline at end of file +depends "nodejs" \ No newline at end of file diff --git a/recipes/default.rb b/recipes/default.rb index df4ba43..1acb279 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -1 +1 @@ -npm_package "forever" \ No newline at end of file +nodejs_npm "forever" \ No newline at end of file