Skip to content

Instantly share code, notes, and snippets.

@marcometz
Created December 11, 2020 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcometz/410ee3f5502418ea58f53c146f5ad990 to your computer and use it in GitHub Desktop.
Save marcometz/410ee3f5502418ea58f53c146f5ad990 to your computer and use it in GitHub Desktop.
VS Code debugger rails launch.json
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
//
// https://github.com/microsoft/vscode-recipes/tree/master/debugging-Ruby-on-Rails
"version": "0.2.0",
"configurations": [
{
"name": "Rails server",
"type": "Ruby",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/bin/rails",
"args": [
"server"
],
"useBundler": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment