Skip to content

Instantly share code, notes, and snippets.

@4ndv
Last active October 24, 2018 08:01
Show Gist options
  • Save 4ndv/dd91c43d94a563a5f0f7b5e95325c70d to your computer and use it in GitHub Desktop.
Save 4ndv/dd91c43d94a563a5f0f7b5e95325c70d to your computer and use it in GitHub Desktop.
launch.json for the rails debug
{
"version": "0.2.0",
"configurations": [
{
"name": "Rails server",
"type": "Ruby",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/bin/rails",
"args": [
"server"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment