Conversation
| cwd: this.workspace.uri.fsPath, | ||
| shell: true | ||
| shell: true, | ||
| env: this.getProcessEnv() |
There was a problem hiding this comment.
This fixes a bug that debug fails (due to lack of EXT_DIR environment variable).
|
Thank you! My biggest concern with merging this right now would be the merge conflicts/issues it may cause with the rewrite in #90. I may ask that we wait until that's merged, or to rebase this PR on top of that one. |
|
This isn't a particularly big PR, so it shouldn't be too much work to incorporate it into the rewrite if you want to get it merged, and I'd be happy to do so :) |
|
Thank you! I'll try to make another patch based on #90. |
| "scope": "resource" | ||
| }, | ||
| "rubyTestExplorer.debugger": { | ||
| "description": "Which debugger to use. `rdebug-ide` or `rdbg`.", |
There was a problem hiding this comment.
This should probably be markdownDescription given the use of backticks, otherwise they won't be rendered nicely
| "description": "Which debugger to use. `rdebug-ide` or `rdbg`.", | |
| "markdownDescription": "Which debugger to use. `rdebug-ide` or `rdbg`.", |
There was a problem hiding this comment.
also need to add ruby_lsp
https://github.com/Shopify/ruby-lsp
This PR enables debug tests with debug gem by using vscode-rdbg extension. (debug gem is bundled with Ruby 3.1+)
Users can choose which debugger to use by
rubyTestExplorer.debuggerconfiguration. (rdebug-ideorrdbg)Example