vscode-rdbg
vscode-rdbg copied to clipboard
VSCode Ruby rdbg Debugger
I have a set of issues, probably related. If not, I can file separate issues. When debugging rails application, I do the following: - run the application with rdbg -O...
I'm trying to utilize spring to boost start time of rspec Current my `launch.json`: ``` { "version": "0.2.0", "configurations": [ { "type": "rdbg", "rdbgPath": "bundle exec rdbg", "name": "Run rspec",...
Closes ruby/vscode-rdbg#37 We can hide the #class item for each object by setting true in the field hideClassItem in User Settings ## Before ## After
Closes ruby/vscode-rdbg#53 https://github.com/ruby/vscode-rdbg/assets/59436572/b2ccb713-1b15-47b8-bfac-30717ba0f80c
I have been using the following config for this extension (and some other similar ones) for a couple of months, with a workaround to load rbenv so it doesn't use...
It would be helpful if you could add a 'custom' option for ruby version manager that runs a specified command to activate a custom version manager. See https://github.com/Shopify/ruby-lsp/issues/1571 in the...
Hi! Thanks for this extension, amazing! I'm using this along with a `preLaunchTask` in VS Code to spin up the development environment via Docker Compose, and it's working great, but...
`Error: exit code is 127 Make sure to install rdbg command (`gem install debug`). If you are using bundler, write `gem 'debug'` in your Gemfile.` The gem is in the...
I am using the standard `launch.json` ``` { "version": "0.2.0", "configurations": [ ... { "type": "rdbg", "name": "Attach with rdbg", "request": "attach" } ] } ``` With this first line...
Can't debug pod within VSCode, here is some related info launch.json ``` { "name": "rdbg Podfile", "type": "rdbg", "request": "launch", "script": "/usr/local/bin/pod", "env": { "LANG": "en_US.UTF-8" }, "cwd": "${workspaceRoot}", "args":...