Sha256: 9d0d1e5a9fc2d775359c1839d5fe9ed1a170c5820954e4edb26e0a3899f94187

Contents?: true

Size: 1.15 KB

Versions: 8

Compression:

Stored size: 1.15 KB

Contents

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Debug Local File",
      "type": "Ruby",
      "request": "launch",
      "cwd": "${workspaceRoot}",
      "program": "${file}"
    },
    {
      "name": "Listen for rdebug-ide",
      "type": "Ruby",
      "request": "attach",
      "cwd": "${workspaceRoot}",
      "remoteHost": "127.0.0.1",
      "remotePort": "1234",
      "remoteWorkspaceRoot": "${workspaceRoot}"
    },
    {
      "name": "RSpec - all",
      "type": "Ruby",
      "request": "launch",
      "cwd": "${workspaceRoot}",
      "program": "${workspaceRoot}/bin/rspec",
      "args": [
        "-I",
        "${workspaceRoot}"
      ]
    },
    {
      "name": "RSpec - active spec file only",
      "type": "Ruby",
      "request": "launch",
      "cwd": "${workspaceRoot}",
      "program": "${workspaceRoot}/bin/rspec",
      "args": [
        "-I",
        "${workspaceRoot}",
        "${file}"
      ]
    },
    {
      "name": "Cucumber",
      "type": "Ruby",
      "request": "launch",
      "cwd": "${workspaceRoot}",
      "program": "${workspaceRoot}/bin/cucumber"
    }
  ]
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
skippy-0.5.2.a .vscode/launch.json
skippy-0.5.1.a .vscode/launch.json
skippy-0.5.0.a .vscode/launch.json
skippy-0.4.3.a .vscode/launch.json
skippy-0.4.2.a .vscode/launch.json
skippy-0.4.1.a .vscode/launch.json
skippy-0.4.0.a .vscode/launch.json
skippy-0.3.0.a .vscode/launch.json