-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
120 lines (120 loc) · 3.01 KB
/
launch.json
File metadata and controls
120 lines (120 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
// 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": [
{
"args": [
"serve",
"--livereload_port", "25729",
"--force_polling",
"--host", "0.0.0.0",
"--port", "4444",
"--future",
"--incremental",
"--livereload",
"--drafts",
"--unpublished"
],
"cwd": "${workspaceRoot}/demo",
"debugPort": "45373",
"env": {
"AppData": "/home/mslinn/.config",
"JEKYLL_ENV": "development"
},
"name": "Debug Demo development",
// "preLaunchTask": "cleanDemo",
"request": "launch",
"script": "${workspaceRoot}/binstub/jekyll",
"type": "rdbg",
"useBundler": true,
},
{
"args": [
"serve",
"--livereload_port", "35732",
"--force_polling",
"--host", "0.0.0.0",
"--port", "4444",
"--incremental",
"--livereload"
],
"cwd": "${workspaceRoot}/demo",
"debugPort": "45373",
"env": {
"AppData": "/home/mslinn/.config",
"JEKYLL_ENV": "production"
},
"name": "Debug Demo production",
// "preLaunchTask": "cleanDemo",
"request": "launch",
"script": "${workspaceRoot}/binstub/jekyll",
"type": "rdbg",
"useBundler": true,
},
{
"type": "ruby_lsp",
"request": "launch",
"name": "Debug release_kraken",
"program": "ruby bin/release_kraken"
},
{
"cwd": "${workspaceRoot}",
"name": "Debug custom_error_take_2.rb",
"request": "launch",
"script": "experiments/custom_error_take_2.rb",
"type": "rdbg",
"useBundler": true,
},
{
"cwd": "${workspaceRoot}",
"debugPort": "0",
"name": "Debug CallChain",
"request": "launch",
"script": "${workspaceRoot}/lib/call_chain.rb",
"type": "rdbg",
"useBundler": true,
},
{
"askParameters": false,
"debugPort": "0",
"name": "Debug current file",
"request": "launch",
"script": "${file}",
"type": "rdbg",
},
{
"debugPort": "45373",
"name": "Attach with rdbg to 45373",
"request": "attach",
"type": "rdbg",
},
{
"args": [
"-I", "${workspaceRoot}/lib",
"-I", "${workspaceRoot}/spec",
"-P", "${workspaceRoot}/spec/**/*_spec.rb"
],
"debugPort": "0",
"name": "RSpec - all",
"request": "launch",
"script": "${workspaceRoot}/binstub/rspec",
"type": "rdbg",
"useBundler": true,
},
{
"args": [
"-I", "${workspaceRoot}/lib",
"-I", "${workspaceRoot}/spec",
"${file}"
],
"debugPort": "0",
"name": "RSpec - active spec only",
"request": "launch",
"script": "${workspaceRoot}/binstub/rspec",
"type": "rdbg",
"useBundler": true,
}
]
}