Created
April 20, 2017 10:08
-
-
Save raldred/987065e5a167d2c569407b85d14b47be to your computer and use it in GitHub Desktop.
Example vscode task config for running Ruby RSpec
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": "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