Last active
February 24, 2021 14:46
-
-
Save eveevans/b1f0207ce4f39dbc88329ca548d81568 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Rspec - all", | |
"type": "shell", | |
"command": "bin/rspec -fd", | |
"problemMatcher": [], | |
"group": { | |
"kind": "test", | |
"isDefault": true | |
}, | |
"presentation": { | |
"clear": true, | |
"reveal": "always", | |
"panel": "shared" | |
} | |
}, | |
{ | |
"label": "Rspec - open current file", | |
"type": "shell", | |
"command": "bin/rspec -fd ${file}", | |
"problemMatcher": [], | |
"group": { | |
"kind": "test", | |
"isDefault": true | |
}, | |
"presentation": { | |
"clear": true, | |
"reveal": "always", | |
"panel": "shared" | |
} | |
}, | |
{ | |
"label": "Rspec - Run test case", | |
"type": "shell", | |
"command": "bin/rspec -fd ${relativeFile}:${lineNumber}", | |
"group": "test", | |
"presentation": { | |
"clear": true, | |
"reveal": "always", | |
"panel": "shared" | |
} | |
}, | |
{ | |
"type": "rake", | |
"task": "about", | |
"problemMatcher": [], | |
"label": "rake: about" | |
}, | |
{ | |
"type": "rake", | |
"task": "assets:clobber", | |
"group": "build", | |
"problemMatcher": [], | |
"label": "rake: assets:clobber" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment