Skip to content

Instantly share code, notes, and snippets.

@eveevans
Last active February 24, 2021 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eveevans/b1f0207ce4f39dbc88329ca548d81568 to your computer and use it in GitHub Desktop.
Save eveevans/b1f0207ce4f39dbc88329ca548d81568 to your computer and use it in GitHub Desktop.
{
"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