本来没有什么好说的,直到自己一直用的vscode-ruby被标记为归档了,然后 Ruby 3.1 上好像用不了这个插件了。搜了一圈,发现 2021 年发布了一个新的插件。
安装 VSCode rdbg Ruby Debugger
https://marketplace.visualstudio.com/items?itemName=KoichiSasada.vscode-rdbg
修改配置文件
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug Rails",
"request": "launch",
"command": "bin/rails",
"script": "server",
"useBundler": true,
"cwd": "${workspaceFolder}"
}
]
}
不需要修改 config/puma.rb
本来这样就好了,但是一篇文章里面提到要修改config/puma.rb
文件,搞得我老是遇到 debugger 自动断开的错误。