Sha256: 9df768dbc21b3446a482c25835f9c892decc687af93eaf2c697e9228816020d2

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
      {
        "name": "Debug Local File",
        "type": "Ruby",
        "request": "launch",
        "program": "${workspaceRoot}/main.rb"
      },
        // Launch the debugger for any given program. In this case, it will run the current file using Ruby
        {
          "type": "ruby_lsp",
          "name": "Debug",
          "request": "launch",
          "program": "ruby ${file}"
        },
        // Launch the debugger for the current test file
        {
          "type": "ruby_lsp",
          "request": "launch",
          "name": "Debug test file",
          "program": "ruby -Itest ${relativeFile}"
        },
        // Attach the debugger client to an existing Ruby process that has already been launched with the debugger
        // server
        {
          "type": "ruby_lsp",
          "request": "attach",
          "name": "Attach to existing server"
        }
      ]
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
plagiarism-checker-3.4.0 .vscode/launch.json