@@ -13,10 +13,10 @@ New debug.rb has several advantages:
1313 * TCP/IP
1414 * Integration with rich debugger frontends
1515
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 |
2020
2121* Extensible: application can introduce debugging support in several ways:
2222 * By ` rdbg ` command
@@ -289,10 +289,10 @@ You can run your application as a remote debuggee, and the remote debugger conso
289289
290290There are multiple ways to run your program as a debuggee:
291291
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) ` |
296296
297297#### ` rdbg --open ` (or ` rdbg -O ` for short)
298298
0 commit comments