forked from rails/devcontainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
35 lines (35 loc) · 1.04 KB
/
devcontainer-feature.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
{
"id": "ruby",
"version": "2.1.3",
"name": "Ruby",
"description": "Installs Ruby and a version manager (mise or rbenv) along with libraries needed to build Ruby.",
"documentationURL": "https://github.com/rails/devcontainer/tree/main/features/src/ruby",
"licenseURL": "https://github.com/rails/devcontainer/blob/main/LICENSE.md",
"customizations": {
"vscode": {
"extensions": [
"shopify.ruby-lsp",
"marcoroth.herb-lsp"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
],
"options": {
"version": {
"type": "string",
"default": "4.0.2",
"description": "The ruby version to be installed"
},
"versionManager": {
"type": "string",
"proposals": [
"mise",
"rbenv"
],
"default": "mise",
"description": "The version manager to use for Ruby (mise or rbenv)"
}
}
}