├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── cli ├── app.go ├── compile.go ├── example_writer.go ├── example_writer_test.go ├── generate.go └── version.go ├── examples ├── github_task.go └── say_hello_task.go ├── main.go ├── script ├── bootstrap ├── build ├── fmt └── test ├── task ├── runner.go ├── task.go └── task_test.go └── tasking ├── t.go ├── tasking.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/README.md -------------------------------------------------------------------------------- /cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/cli/app.go -------------------------------------------------------------------------------- /cli/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/cli/compile.go -------------------------------------------------------------------------------- /cli/example_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/cli/example_writer.go -------------------------------------------------------------------------------- /cli/example_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/cli/example_writer_test.go -------------------------------------------------------------------------------- /cli/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/cli/generate.go -------------------------------------------------------------------------------- /cli/version.go: -------------------------------------------------------------------------------- 1 | package cli 2 | 3 | const Version = "0.9.0" 4 | -------------------------------------------------------------------------------- /examples/github_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/examples/github_task.go -------------------------------------------------------------------------------- /examples/say_hello_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/examples/say_hello_task.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/main.go -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | script/bootstrap 4 | go build -v ./... 5 | -------------------------------------------------------------------------------- /script/fmt: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go fmt ./... 4 | -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | script/fmt 4 | go test -cover -v ./... 5 | -------------------------------------------------------------------------------- /task/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/task/runner.go -------------------------------------------------------------------------------- /task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/task/task.go -------------------------------------------------------------------------------- /task/task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/task/task_test.go -------------------------------------------------------------------------------- /tasking/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/tasking/t.go -------------------------------------------------------------------------------- /tasking/tasking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/tasking/tasking.go -------------------------------------------------------------------------------- /tasking/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/gotask/HEAD/tasking/util.go --------------------------------------------------------------------------------