Skip to content

Commit 868f5bf

Browse files
committed
vscode integration
1 parent b29fff5 commit 868f5bf

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_BIN: "bin"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/pkg/
2+
/bin/
23

.vscode/tasks.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"tasks": [
6+
{
7+
"taskName": "Bundle dependencies and stubs",
8+
"command": "bundle",
9+
"isShellCommand": true,
10+
"isBackground": true,
11+
"args": ["--binstubs"],
12+
"showOutput": "silent"
13+
},
14+
{
15+
"taskName": "Test",
16+
"command": "${workspaceRoot}/bin/rake",
17+
"isTestCommand": true,
18+
"isShellCommand": false,
19+
"args": [],
20+
"showOutput": "always"
21+
},
22+
{
23+
"taskName": "Benchmark",
24+
"command": "${workspaceRoot}/bin/rake",
25+
"isShellCommand": false,
26+
"args": [
27+
"benchmark"
28+
],
29+
"showOutput": "always"
30+
}
31+
]
32+
}

0 commit comments

Comments
 (0)