Skip to content

Instantly share code, notes, and snippets.

@dblanken
Created December 23, 2019 16:26
Show Gist options
  • Save dblanken/df726ebe703d0a30418f10c2265500e8 to your computer and use it in GitHub Desktop.
Save dblanken/df726ebe703d0a30418f10c2265500e8 to your computer and use it in GitHub Desktop.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "rake",
"task": "test",
"group": "test",
"problemMatcher": [
{
"owner": "ruby",
"fileLocation": "autoDetect",
"pattern": [
{
"regexp": "Failure:",
},
{
"regexp": "^.+ \\[(.+):(\\d+)\\]:",
"file": 1,
"line": 2,
},
{
"regexp": "(.+)",
"message": 1,
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment