-
Notifications
You must be signed in to change notification settings - Fork 18
/
metadata.rb
36 lines (31 loc) · 1.13 KB
/
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
36
name 'chef_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 '2.0.0'
recipe 'chef_rvm', 'Installs all'
recipe 'chef_rvm::rvm', 'Installs the rvm for users'
recipe 'chef_rvm::rubies', 'Installs rubies'
recipe 'chef_rvm::gems', 'Creates gemsets and install gems'
recipe 'chef_rvm::packages', 'General recipe. Installs dependencies for other recipes.'
recipe 'chef_rvm::wrappers', 'Create wrappers'
recipe 'chef_rvm::aliases', 'Create aliases'
supports 'ubuntu'
supports 'debian'
depends 'sudo'
depends 'apt'
depends 'build-essential'
depends 'chef_gem'
depends 'curl'
# if using jruby, java is required on system
recommends 'java' # For jruby
recommends 'maven' # For jruby
recommends 'nodejs' # for opal
recommends 'mono' # for ironruby
recommends 'homebrew' # for jruby
# for installing on OSX, this is required for installation and compilation
# suggests 'homebrew'