Sha256: 39126cec52397b4cb1d91fb688fb47295e8793dedc4e11c363cd759eeaa12114

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 KB

Contents

{
   // See https://go.microsoft.com/fwlink/?LinkId=733558
   // for the documentation about the tasks.json format
   "version": "2.0.0",
   "tasks": [
    {
      "label": "build-project",
      "type": "shell",
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "options": {
        "cwd": "${workspaceFolder}",
      },
      "presentation": {
        "clear": true
      },
      "command": "bundle exec ruby bin/test.rb"
    },
    {
      "label": "test-project",
      "type": "shell",
      "presentation": {
        "clear": true
      },
      "group": {
        "kind": "test",
        "isDefault": true
      },
      "command": "bundle exec rspec ${workspaceRoot}"
    },
    {
      "label": "lint-project",
      "type": "shell",
      "presentation": {
        "clear": true
      },
      "command": "/usr/bin/env rubocop ${workspaceRoot}",
      "problemMatcher": []
    },
    {
      "label": "lint-file",
      "type": "shell",
      "presentation": {
        "clear": true
      },
      "command": "/usr/bin/env rubocop ${file}",
      "problemMatcher": []
    }
  ]
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
unitf-tag-0.1.10 .vscode/tasks.json
unitf-tag-0.1.9 .vscode/tasks.json
unitf-tag-0.1.8 .vscode/tasks.json
unitf-tag-0.1.4 .vscode/tasks.json
unitf-tag-0.1.3 .vscode/tasks.json
unitf-tag-0.1.2 .vscode/tasks.json
unitf-tag-0.1.0 .vscode/tasks.json