@@ -13,10 +13,10 @@ New debug.rb has several advantages:
13
13
* TCP/IP
14
14
* Integration with rich debugger frontends
15
15
16
- Frontend | [ Console] ( https://github.com/ruby/debug#invoke-as-a-remote-debuggee ) | [ VSCode] ( https://github.com/ruby/debug#vscode-integration ) | [ Chrome DevTool] ( #chrome-devtool-integration ) |
17
- ---| ---| ---| ---|
18
- Connection | UDS, TCP/IP | UDS, TCP/IP | TCP/IP |
19
- Requirement | No | [ vscode-rdbg] ( https://marketplace.visualstudio.com/items?itemName=KoichiSasada.vscode-rdbg ) | Chrome |
16
+ | Frontend | [ Console] ( https://github.com/ruby/debug#invoke-as-a-remote-debuggee ) | [ VSCode] ( https://github.com/ruby/debug#vscode-integration ) | [ Chrome DevTool] ( #chrome-devtool-integration ) |
17
+ | ----------- | -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | --------------------------------------------- |
18
+ | Connection | UDS, TCP/IP | UDS, TCP/IP | TCP/IP |
19
+ | Requirement | No | [ vscode-rdbg] ( https://marketplace.visualstudio.com/items?itemName=KoichiSasada.vscode-rdbg ) | Chrome |
20
20
21
21
* Extensible: application can introduce debugging support in several ways:
22
22
* By ` rdbg ` command
@@ -289,10 +289,10 @@ You can run your application as a remote debuggee, and the remote debugger conso
289
289
290
290
There are multiple ways to run your program as a debuggee:
291
291
292
- Stop at program start | [ ` rdbg ` option] ( https://github.com/ruby/debug#rdbg---open-or-rdbg--o-for-short ) | [ require] ( https://github.com/ruby/debug#require-debugopen-in-a-program ) | [ debugger API] ( https://github.com/ruby/debug#start-by-method )
293
- ---| ---| ---| ---|
294
- Yes | ` rdbg --open ` | ` require "debug/open" ` | ` DEBUGGER__.open `
295
- No | ` rdbg --open --nonstop ` | ` require "debug/open_nonstop" ` | ` DEBUGGER__.open(nonstop: true) `
292
+ | Stop at program start | [ ` rdbg ` option] ( https://github.com/ruby/debug#rdbg---open-or-rdbg--o-for-short ) | [ require] ( https://github.com/ruby/debug#require-debugopen-in-a-program ) | [ debugger API] ( https://github.com/ruby/debug#start-by-method ) |
293
+ | --------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------- |
294
+ | Yes | ` rdbg --open ` | ` require "debug/open" ` | ` DEBUGGER__.open ` |
295
+ | No | ` rdbg --open --nonstop ` | ` require "debug/open_nonstop" ` | ` DEBUGGER__.open(nonstop: true) ` |
296
296
297
297
#### ` rdbg --open ` (or ` rdbg -O ` for short)
298
298
0 commit comments