我有一个Ruby on Rails应用程序,里面有一个引擎。我拥有引擎和应用程序本身的代码。从VS Code调试应用程序很容易。但是,我无法弄清楚如何附加引擎来调试它提供的应用程序部分。我尝试了以下启动配置:
{
"name": "Listen for rdebug-ide",
"type": "Ruby",
"request": "attach",
"cwd": "/absolute/path/to/my/engine",
"remoteHost": "127.0.0.1",
"remotePort": "3000",
"remoteWorkspaceRoot": "/absolute/path/to/my/web-app"
},
但是在尝试调试时,我收到的错误是:TypeError: Cannot read property 'Run' of undefined
。有人可以帮忙吗?