Skip to content

Commit

Permalink
Add launch.json to run the ruby debugger in VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
jcouball committed May 7, 2023
1 parent c3de36d commit 2814761
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Test
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug current file with rdbg",
"request": "launch",
"script": "${file}",
"args": [],
"askParameters": false
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
]
}

0 comments on commit 2814761

Please sign in to comment.