Created
April 4, 2019 13:16
-
-
Save Pegolon/e189903baf7e94916640dbd980ce52f1 to your computer and use it in GitHub Desktop.
Debug Rake with Visual Studio Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Rake", | |
"type": "Ruby", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"program": "/usr/bin/rake", | |
"env": { | |
"MY_CUSTOM_ENV": "ABC" | |
}, | |
"args": [ | |
"my_rake_task_name" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment