我正在尝试使用VS Code为Sinatra服务器设置调试服务器。
没有断点,服务器在调试模式下运行良好。启用断点后,服务器会在断点处收到超时错误,并且未启用调试选项。
这是我的launch.json
文件配置
{
"name": "Debug Sinatra Server",
"type": "Ruby",
"request": "launch",
"showDebuggerOutput": true,
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/bin/puma",
"args": [
"-p",
"7001"
]
}..
VS Code调试控制台的屏幕截图。