aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Mendonça França <rafael@franca.dev>2023-06-30 01:00:56 +0300
committerGitHub <noreply@github.com>2023-06-30 01:00:56 +0300
commitef76ff97b60f43c7dcff6691427d9fc54e9b2503 (patch)
tree085a865b1d7323f3c1ab815dcb8214ff8ddd1f2e
parentb6dbe7051cb3c0491749409351804eef942b4160 (diff)
Change Ruby extension to ruby-lsp (#566)feature_ruby_1.1.0
This is the extension that is recommended in the VSCode documentation now. https://code.visualstudio.com/docs/languages/ruby
-rw-r--r--src/ruby/devcontainer-feature.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ruby/devcontainer-feature.json b/src/ruby/devcontainer-feature.json
index e9fafee..fdf8b26 100644
--- a/src/ruby/devcontainer-feature.json
+++ b/src/ruby/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "ruby",
- "version": "1.0.10",
+ "version": "1.1.0",
"name": "Ruby (via rvm)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby",
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",
@@ -21,7 +21,8 @@
"customizations": {
"vscode": {
"extensions": [
- "rebornix.Ruby"
+ "rebornix.Ruby",
+ "shopify.ruby-lsp"
]
}
},