-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.json
260 lines (229 loc) · 7.47 KB
/
metadata.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{
"name": "rvm",
"description": "Installs and manages RVM. Includes several LWRPs.",
"long_description": "Please refer to README.md (it's long).",
"maintainer": "Fletcher Nichol",
"maintainer_email": "[email protected]",
"license": "Apache 2.0",
"platforms": {
"debian": ">= 0.0.0",
"ubuntu": ">= 0.0.0",
"suse": ">= 0.0.0",
"centos": ">= 0.0.0",
"redhat": ">= 0.0.0",
"fedora": ">= 0.0.0"
},
"dependencies": {
},
"recommendations": {
"java": ">= 0.0.0"
},
"suggestions": {
},
"conflicting": {
},
"providing": {
},
"replacing": {
},
"attributes": {
"rvm/default_ruby": {
"display_name": "Default ruby",
"description": "The default ruby for RVM. If the RVM ruby is not installed, it will be built as a pre-requisite.",
"default": "ruby-1.9.2-p180",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/rubies": {
"display_name": "Installed RVM rubies",
"description": "A list of RVM rubies to be built and installed. If this list is emptied then no rubies (not even the default) will be built and installed. The default is the an array containing the value of rvm/default_ruby.",
"type": "array",
"default": [
"node[:rvm][:default_ruby]"
],
"choice": [
],
"calculated": false,
"required": "optional",
"recipes": [
]
},
"rvm/install_rubies": {
"display_name": "Can enable or disable installation of a default ruby and additional rubies set attribute metadata.",
"description": "Can enable or disable installation of a default ruby and additional rubies set attribute metadata. The primary use case for this attribute is when you don't want any rubies installed (but you want RVM installed).",
"default": "true",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/global_gems": {
"display_name": "Global gems to be installed in all RVM rubies",
"description": "A list of gem hashes to be installed into the *global* gemset in each installed RVM ruby. The RVM global.gems files will be added to and all installed rubies will be iterated over to ensure full installation coverage.",
"type": "array",
"default": [
{
"name": "bundler"
}
],
"choice": [
],
"calculated": false,
"required": "optional",
"recipes": [
]
},
"rvm/gems": {
"display_name": "Hash of ruby/gemset gem manifests",
"description": "A list of gem hashes to be installed into arbitrary RVM rubies and gemsets.",
"type": "hash",
"default": {
},
"choice": [
],
"calculated": false,
"required": "optional",
"recipes": [
]
},
"rvm/rvmrc": {
"display_name": "Hash of rvmrc options",
"description": "A hash of system-wide `rvmrc` options. The key is the RVM setting name (in String or Symbol form) and the value is the desired setting value. See RVM documentation for rvmrc options.",
"type": "hash",
"default": {
},
"choice": [
],
"calculated": false,
"required": "optional",
"recipes": [
]
},
"rvm/branch": {
"display_name": "A specific git branch to use when installing system-wide.",
"description": "A specific git branch to use when installing system-wide.",
"default": "nil",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/version": {
"display_name": "A specific tagged version to use when installing system-wide.",
"description": "A specific tagged version to use when installing system-wide. This value is passed directly to the `rvm-installer` script and current valid values are: `head` (the default, last git commit), `latest` (last tagged release version) and a specific tagged version of the form `1.2.3`. You may want to use a specific version of RVM to prevent differences in deployment from one day to the next (RVM head moves pretty darn quickly).",
"default": "nil",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/upgrade": {
"display_name": "How to handle updates to RVM framework",
"description": "Determines how to handle installing updates to the RVM framework.",
"default": "none",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/root_path": {
"display_name": "RVM system-wide root path",
"description": "Root path for system-wide RVM installation",
"default": "/usr/local/rvm",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/installer_url": {
"display_name": "The URL that provides the RVM installer.",
"description": "The URL that provides the RVM installer.",
"default": "http://rvm.beginrescueend.com/install/rvm",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/group_users": {
"display_name": "Additional users in rvm group",
"description": "Additional users in rvm group that can manage rvm in a system-wide installation.",
"type": "array",
"default": [
],
"choice": [
],
"calculated": false,
"required": "optional",
"recipes": [
]
},
"rvm/rvm_gem_options": {
"display_name": "These options are passed to the 'gem' command in a RVM environment.",
"description": "These options are passed to the 'gem' command in a RVM environment. In the interest of speed, rdoc and ri docs will not be generated by default.",
"default": "--no-rdoc --no-ri",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/vagrant/system_chef_solo": {
"display_name": "If using the `vagrant` recipe, this sets the path to the package-installed `chef-solo` binary.",
"description": "If using the `vagrant` recipe, this sets the path to the package-installed `chef-solo` binary.",
"default": "/usr/bin/chef-solo",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
},
"rvm/gem_package/rvm_string": {
"display_name": "If using the `gem_package` recipe, this determines which ruby will be used by the `gem_package` resource in other cookbooks.",
"description": "If using the `gem_package` recipe, this determines which ruby will be used by the `gem_package` resource in other cookbooks.",
"default": "node[:rvm][:default_ruby]",
"choice": [
],
"calculated": false,
"type": "string",
"required": "optional",
"recipes": [
]
}
},
"groupings": {
},
"recipes": {
"rvm": "Includes all recipes",
"rvm::system": "Installs system-wide RVM",
"rvm::vagrant": "An optional recipe to help if running in a Vagrant virtual machine",
"rvm::gem_package": "An experimental recipe that patches the gem_package resource"
},
"version": "0.7.0"
}