refactor devcontainer for simpler ruby install

This commit is contained in:
Dylan Knutson
2025-07-20 17:36:28 +00:00
parent 6ba5a70bb5
commit 198ab946d7
10 changed files with 77 additions and 11 deletions

9
.vscode/launch.json vendored
View File

@@ -6,17 +6,14 @@
"configurations": [
{
"type": "rdbg",
"name": "Debug current file with rdbg",
"name": "rdbg - demo_functionality.rb",
"request": "launch",
"script": "${file}",
"askParameters": true,
"rdbgPath": "~/.rbenv/shims/rdbg"
"script": "demo_functionality.rb",
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"name": "rdbg - attach to rspec",
"request": "attach",
"rdbgPath": "~/.rbenv/shims/rdbg"
}
]
}

View File

@@ -2,11 +2,13 @@
"editor.formatOnSave": true,
"workbench.editor.titleScrollbarSizing": "large",
"rubyLsp.formatter": "syntax_tree",
"rubyLsp.addonSettings": {
"Ruby LSP RSpec": {
"debug": true
}
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp"
},
"rubyLsp.rubyVersionManager": {
"rbenvExecutablePath": "/usr/local/share/rbenv/bin/rbenv",
},
"rdbg.useBundler": false,
}