vscode-rdbg
vscode-rdbg copied to clipboard
VSCode Ruby rdbg Debugger
I have a Rails app that is run in Docker Compose with following structure: ```yaml my-rails-app: build: . image: my-image ports: - 3000:3000 - 1234:1234 command: ["rdbg", "-n", "--open", "--port",...
The current use of a single terminal for launching the `rdbg` command prevents from using 2 debugging simultaneous sessions. If you have 2 configurations like this : ```json [ {...
In version 0.1.0, output is sent by default to the debug console (it used to only go to a new terminal, but now you can choose where it goes via...
Rather than launching an RSpec test with a launch configuration, I would rather use an RSpec extension which provides enhanced RSpec functionality (currently using Ruby Spec Runner). When I launch...
Hello i'm trying to initialize rspec with debug in vscode. I have installed this extensions:  In terminal I execute this command: bundle e rdbg -O -c -- bundle exec...
It seems that the localfsMap configuration is not being set on rdbg when attaching I am able to attach successfully but when trying to set a breakpoint it fails because...
Hey there, using Ruby on rails. I am getting this when I hit F5. The command line is serving the site properly to http://localhost:12345 **HTTP parse error, malformed request ():...
I'm trying to debug a Remote WSL session using rdbg extension. When i try to attach the rdbg process into VSCode, i get the following error: ``` your 131072x1 screen...
When a ruby process is forked, the debugger initially works as expected. Breakpoints fire correctly in both the parent and child processes. However, when the child fork exits, the VSCode...
One killer feature which is missing atm is the ability to do something similar to Pry where you can change the values of variables on the fly during debugging. Right...