forked from mdxp/nodejs-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
21 lines (18 loc) · 797 Bytes
/
metadata.rb
File metadata and controls
21 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
maintainer "Promet Solutions"
maintainer_email "marius@promethost.com"
license "Apache 2.0"
description "Installs/Configures nodejs"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.1.2"
name "nodejs"
provides "nodejs"
recipe "nodejs", "Installs Node.JS based on the default installation method"
recipe "nodejs::install_from_source", "Installs Node.JS from source"
recipe "nodejs::install_from_binary", "Installs Node.JS from official binaries"
recipe "nodejs::install_from_package", "Installs Node.JS from packages"
recipe "nodejs::npm", "Installs npm from source - a package manager for node"
depends "build-essential"
depends "apt"
%w{ debian ubuntu centos redhat smartos }.each do |os|
supports os
end