forked from NikolayMurha/chef-rvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
30 lines (25 loc) · 949 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
name 'ruby_rvm'
maintainer 'R&R Innovation LLC'
maintainer_email 'work at murga.kiev.ua'
license 'Apache v2.0'
description 'Installs/Configures rvm'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
# source_url 'https://github.com/MurgaNikolay/chef-rvm'
# issues_url 'https://github.com/MurgaNikolay/chef-rvm/issues'
version '0.4.9'
recipe 'ruby_rvm', 'Installs all'
recipe 'ruby_rvm::rvm', 'Installs the rvm for users'
recipe 'ruby_rvm::rubies', 'Installs rubies'
recipe 'ruby_rvm::gems', 'Creates gemsets and install gems'
recipe 'ruby_rvm::packages', 'General recipe. Installs dependencies for other recipes.'
recipe 'ruby_rvm::wrappers', 'Create wrappers'
supports 'ubuntu'
supports 'debian'
depends 'sudo'
depends 'apt'
depends 'bsw_gpg'
depends 'chef_gem'
# if using jruby, java is required on system
recommends 'java'
# for installing on OSX, this is required for installation and compilation
suggests 'homebrew'