Skip to content

Instantly share code, notes, and snippets.

@Pegolon
Created April 4, 2019 13:16
Show Gist options
  • Save Pegolon/e189903baf7e94916640dbd980ce52f1 to your computer and use it in GitHub Desktop.
Save Pegolon/e189903baf7e94916640dbd980ce52f1 to your computer and use it in GitHub Desktop.
Debug Rake with Visual Studio Code
{
"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