From 6af617c45b9e73bcdc25490476f59796fa3a8fb3 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Fri, 12 Apr 2024 20:38:21 +0200 Subject: [PATCH] Delete .vscode/launch.json Signed-off-by: Kjeld Schouten --- .vscode/launch.json | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index cb84ce00acd..00000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // 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": [ - { - "name": "Common UnitTest - all tests", - "type": "Ruby", - "request": "launch", - "cwd": "${workspaceRoot}", - "program": "/usr/local/bin/bundle", - "args": ["exec", "m", "-r", "${workspaceFolder}/tests"] - }, - { - "name": "Common UnitTest - active spec file only", - "type": "Ruby", - "request": "launch", - "cwd": "${workspaceRoot}", - "program": "/usr/local/bin/bundle", - "args": ["exec", "m", "-r", "${relativeFile}"] - } - ] -}