forked from aspyatkin/yarn-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
35 lines (27 loc) · 970 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name 'yarn'
maintainer 'Alexander Pyatkin'
maintainer_email 'aspyatkin@gmail.com'
license 'MIT'
description 'Install Yarn package manager'
long_description ::IO.read(::File.join(::File.dirname(__FILE__), 'README.md'))
version '0.4.4'
provides 'yarn::default'
recipe 'yarn::default', 'Install or upgrade Yarn'
provides 'yarn::repository'
recipe 'yarn::repository', 'Add Yarn repository to a system'
provides 'yarn::install_package'
recipe 'yarn::install_package', 'Install Yarn'
provides 'yarn::upgrade_package'
recipe 'yarn::upgrade_package', 'Install the latest version of Yarn'
provides 'yarn_install[run]'
provides 'yarn_run[run]'
scm_url = 'https://github.com/aspyatkin/yarn-cookbook'
source_url scm_url if respond_to?(:source_url)
issues_url "#{scm_url}/issues" if respond_to?(:issues_url)
depends 'apt'
chef_version '>= 17'
supports 'debian', '>= 7.0'
supports 'ubuntu', '>= 14.04'
supports 'centos', '>= 7.0'
supports 'redhat', '>= 7.0'
supports 'amazon'