From 9ac645166311d1662685cd64cc46ec7f8abd26a1 Mon Sep 17 00:00:00 2001 From: Alexander Momchilov Date: Mon, 21 Jul 2025 20:03:13 -0400 Subject: [PATCH] Add task to debug `tapioca gem` failures --- .vscode/launch.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c0ec24af7..193cb6319 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -23,6 +23,15 @@ "script": "${relativeFile}:${lineNumber}", "args": [], "askParameters": true - } + }, + { + "type": "rdbg", + "useBundler": true, + "name": "bundle exec tapioca gem", + "request": "launch", + "command": "bundle exec ruby", + "script": "${workspaceFolder}/exe/tapioca", + "args": ["gem"], + }, ] }