debug
をインストール
group :development do
gem 'debug'
end
ターミナル
$ bundle install
launch.json
を作成する
.vscode/launch.json
を以下のとおり作成します。
.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug current file with rdbg",
"request": "launch",
"script": "${file}",
"args": [],
"askParameters": true
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
]
}
Rails
を起動
rdbg
経由でRails
を起動します。
ターミナル
$ $ rdbg --open --command -- bundle exec rails server