Skip to content

Instantly share code, notes, and snippets.

@raldred
Created April 20, 2017 10:08
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 raldred/987065e5a167d2c569407b85d14b47be to your computer and use it in GitHub Desktop.
Save raldred/987065e5a167d2c569407b85d14b47be to your computer and use it in GitHub Desktop.
Example vscode task config for running Ruby RSpec
{
"version": "0.1.0",
"tasks":[
{
"command": "/Users/robaldred/.rvm/wrappers/ruby-2.4.0/bundle",
"args": [
"exec", "rspec", "--format", "progress", "--color"
],
"isTestCommand": true,
"echoCommand": true,
"taskName": "RSpec"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment