3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCodeでRubyを気軽に実行する環境を作る(デバッガ付き

Posted at

Ruby Debug プラグインのドキュメントに書いてあるのそのままですが・・・

  • Rubyはrbenvでもなんでもいいのでインストール済みとする
  • VScodeもインストール済みとする
Ruby : gemのreadaptをインストール
$ gem install readapt
VScode : Ruby プラグインをインストール

r.png

VScode : Ruby Debug プラグインをインストール

rd.png

VScode : .vscode/lunch.jsonを追加して以下を記載
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "ruby-debug",
            "request": "launch",
            "name": "Launch File",
            "program": "${file}",
            "programArgs": [],
            "useBundler": false
        }
    ]
}

これで、今開いているファイルをサクッと実行できます。
ブレークポイントなんかも効くので超便利

注意

ブレークポイントで実行を止めている状態でVSCodeを終了するなど、readaptのプロセスが変な形で実行し続けてしまうとまともに動かなくなるのでその時はプロセスkillするかPC再起動で。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?