Ruby debugger to connect debug library which utilize recent Ruby's debug support features.
You need to install latest debug
gem and rdbg
command should be in $PATH
.
$ gem install debug
Without any configuration, you can use this debugger by "Start Debugging" (F5 key) if you activate .rb
file.
You will see the "Debug command line" input dialog. Please specify your favorite command line you want to debug.
For example:
ruby foo.rb
(launchfoo.rb
)ruby foo.rb 10 20 30
(launchfoo.rb
with options10
,20
and30
)rake taskA
(launchrake
tasktaskA
)bundle exec rspec
(launchrspec
command withbundle exec
)bin/rails s
(launchbin/rails s
)
When you select a command line, the specified command will run on rdbg
debugger, and VSCode will connect to the rdbg
debugger with UNIX domain socket.
And new terminal is created (named rdbg
).
You can see stdout/err outputs and you can input stdin on rdbg
terminal.
You can stop the programs
- by setting breakpoints (F9) on source code.
- by exception (if you enable "rescue exception").
- by pushing the Pause button (F6).
When the program stops, you can see "Call stack", "Variables" and you can set "Watch" expressions. On the debug console, you can input valid Ruby program and you will get an evaluation result on selected context ("Call stack").
See also: Debugging in Visual Studio Code
For developers: RUBY_DEBUG_DAP_SHOW_PROTOCOL=1
on rdbg
terminal will show the all DAP protocol.
You can write your favorite setting in .vscode/launch.json
.
To make a .vscode/launch.json
with default settings, you only need to click "create a launch.json file" on the "Run and Debug" pane. And you will see the following default configurations.
{
// 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 current file with rdbg",
"request": "launch",
"script": "${file}",
"args": [],
"askParameters": true
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
]
}
It contains "Debug current file with rdbg" (launch) configuration and "Attach with rdbg" (attach) configuration. You can modify this configuration, and also you can add your favorite configuration like:
{
"type": "rdbg",
"name": "Run rake test",
"request": "launch",
"command": "rake",
"script": "test", // launch rake test with debugger
"args": [],
"askParameters": false // Do not ask startup parameter any more
},
You can use the following "launch" configurations.
- Debuggee settings
script
- A target script file name.
- default: an active ruby file on VSCode
command
- Executable Ruby command. You can specify
bundle exec ruby
for example. - default:
ruby
- Executable Ruby command. You can specify
cwd
- Directory to execute the program in.
- default:
${workspaceFolder}
args
- Command line arguments passed to the program.
- default:
[]
env
- Additional environment variables to pass to the debugging (and debugged) process.
- default: N/A
useBundler
:- Execute Ruby programs with
bundle exec
ifcommand
configuration is not given. andGemfile
is available in the workspace. - Note that you can specify this
useBundler
by the extension configuration (default: true). - default: undefined (and the extension configuration default value is
true
)
- Execute Ruby programs with
- Behavior settings
askParameters
- Ask "Debug command line" before debugging. If the MAIN program is always same, set it false.
- Note that the last invoked command is remembered.
- default: true
rdbgPath
- Location of the rdbg executable.
- Note that you can specify this
rdbgPath
by the extension configuration (default:rdbg
). - default:
rdbg
debugPort
- Without
debugPort
configuration, open a UNIX Domain Socket (or TCP/IPlocalhost:0
on Windows) to communicate with debuggee. If you want to use another debug port, set this configuration.- Digits (e.g.
12345
): open a TCP/IP debug port with port12345
hostname:port
(e.g.hostname:12345
): open a TCP/IP port12345
and hostnamehostname
- Otherwise, open a UNIX Domain socket with the filename given by this configuration.
- Digits (e.g.
- Note that you can specify
0
TCP/IP port (choose usable port) with debug.gem v1.5.0 or later.
- Without
waitLaunchTime
- If you want to open TCP/IP debug port, you may need to wait for opening debug port. On default, it waits 5000 milliseconds (5 sec) but if it is not enough, please specify more wait time (default:
5000
in milliseconds). - With debug.gem 1.5.0 and later you may not need this configuration.
- If you want to open TCP/IP debug port, you may need to wait for opening debug port. On default, it waits 5000 milliseconds (5 sec) but if it is not enough, please specify more wait time (default:
useTerminal
- If the configuration is true, create a new terminal and then execute the debug command line there. It is a bit slower.
- Otherwise, all outputs to the STDIN/OUT are shown in the DEBUG CONSOLE.
- If you need to use STDIN, please set this option.
- default: false
showProtocolLog
- Prints all DAP communication log in "rdbg" output. This is for development of this extension.
- default: false
Note that if you have a trouble by launching rdbg
, please try to specify rdbgPath
. Without this configuration, this extension simply calls rdbg
in PATH.
You can attach to a Ruby process which run with an opening debugger port.
The following commands starts the foo.rb
with opening debug port. There are more methods to open the port. See more for ruby/debug: Debugging functionality for Ruby.
# With rdbg command
$ rdbg --open foo.rb # open debug port. -O is short for --open
$ rdbg -n -O foo.rb # do not stop at the beginning of application
$ rdbg -O -c -- bundle exec rspec # run rspec with remote
# With debug/open lib
$ ruby -r debug/open foo.rb
$ ruby -r debug/open_nonstop foo.rb # do not stop at the beginning of application
# If your application requires debug/open (or debug/open_nonstop) explicitly, of course -r is not needed.
$ ruby foo.rb
# With debug lib with RUBY_DEBUG_OPEN
$ RUBY_DEBUG_OPEN=true ruby -r debug foo.rb
# If your application requires debug explicitly, of course -r is not needed.
$ RUBY_DEBUG_OPEN=true ruby foo.rb
# If your Gemfile has a line `gem 'debug'` with Rails, you only need to launch it with the `RUBY_DEBUG_OPEN` envval.
$ RUBY_DEBUG_OPEN=true rails server
After that, you can connect to the debug port. This extension searches opening debugger port and attach to that port by running Attach with rdbg
(select it on the top of "RUN AND DEBUG" pane and push the green "Start Debugging" button).
You can specify the following "attach" configurations.
rdbgPath
- Same as
launch
request.
- Same as
debugPort
- Same as
launch
request.
- Same as
localfs
- On TCP/IP, if target host is local machine, set
true
and you can open the file directly - default: false
- On TCP/IP, if target host is local machine, set
localfsMap
- Specify pairs of remote root path and local root path like
/remote_dir:/local_dir
if sharing the same source repository with local and remote computers. - You can specify multiple pairs like
/rem1:/loc1,/rem2:/loc2
by concatenating with,
. - default: undefined
- Specify pairs of remote root path and local root path like
Without debugPort
configuration, the
With debugPort
, you can attach to TCP/IP debug port.
- Start your debuggee command with a TCP/IP debug port with debug.gem configurations.
- Using
rdbg
command like:rdbg --open --port 12345 foo.rb
- Using
debug/open
lib:RUBY_DEBUG_PORT=12345 ruby -r debug/open foo.rb
- Using
debug
lib withRUBY_DEBUG_OPEN
envval:RUBY_DEBUG_OPEN=true RUBY_DEBUG_PORT=12345 ruby -r debug foo.rb
- Using
- On VSCode (debugger-side):
- Add
debugPort: '12345'
attach configuration. - Choose
Attach with rdbg
and start attach debugging
- Add
localfsMap
is helpful if you run the debuggee and share the same file system with another name in debuggee.
For example, running a docker container with -v
option (and --network=host
to communicate with the host and a docker container) option like that:
$ docker run --network=host -it -v `pwd`:/app/ --rm ruby bash
/:# cd app
/app:# rdbg -O --port=12345 target.rb
In this case, the current directory of host (${workspaceFolder}
) is shared with the name /app
in a container and VSCode on the host can connect to the debuggee process in a container by TCP/IP port 12345. The launch.json
configuration should be:
{
"type": "rdbg",
"name": "Attach with rdbg (tcp 12345)", // Specify your favorite name
"request": "attach",
"debugPort": "localhost:12345",
"localfsMap": "/app:${workspaceFolder}"
}
In order to launch the debugger using the correct Ruby version, rdbg allows configuring your preferred version manager, which is used to activate the Ruby environment with extension settings (or settings.json
).
// Default value is "none" for not using a version manager to activate the environment
// Available managers are shadowenv, chruby, asdf, rbenv and rvm
{
// User settings
"rdbg.rubyVersionManager": "none"
}
If you are using rbenv
configured with a login shell (on bash or zsh), you do not need to specify this configuration because vscode-rdbg will launch ruby command with login shell setting like bash -lic ruby ...
. With this configuration, vscode-rdbg will launch simply ruby
command. This configuration will be useful if you are using other environment such as chruby and so on.
- This extension is based on Ethan Reesor / VSCode Byebug · GitLab by Ethan Reesor. Without his great work, the extension can not be released (Koichi learned TypeScript, VSCode extension and DAP by his extension).
- Icon is by @firien (#74).