Basic setup, launch config and layout
This commit is contained in:
parent
535a051755
commit
1a3d172fe5
41 changed files with 382 additions and 105 deletions
26
.vscode/launch.json
vendored
Normal file
26
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "ruby_lsp",
|
||||
"name": "Attach debugger",
|
||||
"request": "attach"
|
||||
},
|
||||
{
|
||||
"type": "ruby_lsp",
|
||||
"name": "Debug script",
|
||||
"request": "launch",
|
||||
"program": "ruby ${file}"
|
||||
},
|
||||
{
|
||||
"type": "ruby_lsp",
|
||||
"name": "Debug test",
|
||||
"request": "launch",
|
||||
"program": "ruby -Itest ${relativeFile}"
|
||||
},
|
||||
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue