tangled
alpha
login
or
join now
sharparam.com
/
advent-of-code
0
fork
atom
Code for the Advent of Code event
aoc
advent-of-code
0
fork
atom
overview
issues
pulls
pipelines
Add VS Code launch config
sharparam.com
7 years ago
244eab54
00eca511
+64
-7
2 changed files
expand all
collapse all
unified
split
.gitignore
.vscode
launch.json
-7
.gitignore
reviewed
···
116
116
compile_commands.json
117
117
CTestTestfile.cmake
118
118
119
119
-
### Code ###
120
120
-
# Visual Studio Code - https://code.visualstudio.com/
121
121
-
.settings/
122
122
-
.vscode/
123
123
-
tsconfig.json
124
124
-
jsconfig.json
125
125
-
126
119
### Csharp ###
127
120
## Ignore Visual Studio temporary files, build results, and
128
121
## files generated by popular Visual Studio add-ons.
+64
.vscode/launch.json
reviewed
···
1
1
+
{
2
2
+
// Use IntelliSense to learn about possible attributes.
3
3
+
// Hover to view descriptions of existing attributes.
4
4
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
+
"version": "0.2.0",
6
6
+
"configurations": [
7
7
+
{
8
8
+
"name": "Debug Local File",
9
9
+
"type": "Ruby",
10
10
+
"request": "launch",
11
11
+
"cwd": "${fileDirname}",
12
12
+
"program": "${file}"
13
13
+
},
14
14
+
{
15
15
+
"name": "Listen for rdebug-ide",
16
16
+
"type": "Ruby",
17
17
+
"request": "attach",
18
18
+
"cwd": "${workspaceRoot}",
19
19
+
"remoteHost": "127.0.0.1",
20
20
+
"remotePort": "1234",
21
21
+
"remoteWorkspaceRoot": "${workspaceRoot}"
22
22
+
},
23
23
+
{
24
24
+
"name": "Rails server",
25
25
+
"type": "Ruby",
26
26
+
"request": "launch",
27
27
+
"cwd": "${workspaceRoot}",
28
28
+
"program": "${workspaceRoot}/bin/rails",
29
29
+
"args": [
30
30
+
"server"
31
31
+
]
32
32
+
},
33
33
+
{
34
34
+
"name": "RSpec - all",
35
35
+
"type": "Ruby",
36
36
+
"request": "launch",
37
37
+
"cwd": "${workspaceRoot}",
38
38
+
"program": "${workspaceRoot}/bin/rspec",
39
39
+
"args": [
40
40
+
"-I",
41
41
+
"${workspaceRoot}"
42
42
+
]
43
43
+
},
44
44
+
{
45
45
+
"name": "RSpec - active spec file only",
46
46
+
"type": "Ruby",
47
47
+
"request": "launch",
48
48
+
"cwd": "${workspaceRoot}",
49
49
+
"program": "${workspaceRoot}/bin/rspec",
50
50
+
"args": [
51
51
+
"-I",
52
52
+
"${workspaceRoot}",
53
53
+
"${file}"
54
54
+
]
55
55
+
},
56
56
+
{
57
57
+
"name": "Cucumber",
58
58
+
"type": "Ruby",
59
59
+
"request": "launch",
60
60
+
"cwd": "${workspaceRoot}",
61
61
+
"program": "${workspaceRoot}/bin/cucumber"
62
62
+
}
63
63
+
]
64
64
+
}