vscode-rdbg
vscode-rdbg copied to clipboard
VSCode Ruby rdbg Debugger
Bumps [ws](https://github.com/websockets/ws) from 8.16.0 to 8.17.1. Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a DoS vulnerability (#2231). A request with a number of headers exceeding the[server.maxHeadersCount][] threshold...
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...
launch.json ```json { "name": "Ruby", "type": "rdbg", "request": "launch", "script": "${file}", "useTerminal": true, "args": [ "", "${workspaceFolder}\\test\\out.txt" ], "cwd": "${workspaceFolder}", } ``` ruby code ```ruby puts "hallo" ``` the out...
Steps to reproduce: 1. Install latest VS Code version (1.99.0) 2. Install latest rdbg extension version (0.0.2) 3. Set up launch configuration as per the instructions in the marketplace (also...
Here is the output I get when debugging a Ruby script. ``` "Running: /opt/local/bin/fish -lic rdbg --command --open --stop-at-load -- bundle exec ruby output:extension-output-KoichiSasada.vscode-rdbg-%231-rdbg" warning: Could not set up terminal....
Fixes #505. I didn't test this PR as I am not a Ruby user, so someone should try this before this gets merged. But it would be good to merge,...
I believe https://github.com/ruby/vscode-rdbg/blob/dd16d1411e3980927086c5af3854ad643d0fdb8f/src/extension.ts#L115 ends up sending that evaluate request to _any_ debug session, even completely different language ones. We are seeing this in the Julia extension now, that Julia debug...
`.html.erb` files commonly used in Rails don't allow breakpoints to be attached This is similar to #54 and can be worked around by setting the **Debug: Allow Breakpoints Everywhere** preference....