mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 03:37:40 +00:00
vs code launcher config files
This commit is contained in:
parent
edbcd9a0e6
commit
a7aa6b7768
61
Pearlception/.vscode/launch.json
vendored
Normal file
61
Pearlception/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
/*{
|
||||
"name": "Debug Local File",
|
||||
"type": "Ruby",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"program": "${workspaceRoot}/main.rb"
|
||||
},
|
||||
{
|
||||
"name": "Listen for rdebug-ide",
|
||||
"type": "Ruby",
|
||||
"request": "attach",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"remoteHost": "127.0.0.1",
|
||||
"remotePort": "1234",
|
||||
"remoteWorkspaceRoot": "${workspaceRoot}"
|
||||
},*/
|
||||
{
|
||||
"name": "Rails server",
|
||||
"type": "Ruby",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"program": "${workspaceRoot}/bin/rails",
|
||||
"args": [
|
||||
"server"
|
||||
]
|
||||
},
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user