xesite/vendor/github.com/magefile/mage
Cadey Ratio 91dd3b19f6 convert to go buildpack 2017-12-13 10:43:58 -08:00
..
build convert to go buildpack 2017-12-13 10:43:58 -08:00
mage convert to go buildpack 2017-12-13 10:43:58 -08:00
mg convert to go buildpack 2017-12-13 10:43:58 -08:00
parse convert to go buildpack 2017-12-13 10:43:58 -08:00
sh convert to go buildpack 2017-12-13 10:43:58 -08:00
site convert to go buildpack 2017-12-13 10:43:58 -08:00
target convert to go buildpack 2017-12-13 10:43:58 -08:00
types convert to go buildpack 2017-12-13 10:43:58 -08:00
.gitattributes convert to go buildpack 2017-12-13 10:43:58 -08:00
.gitignore convert to go buildpack 2017-12-13 10:43:58 -08:00
.goreleaser.yml convert to go buildpack 2017-12-13 10:43:58 -08:00
.travis.yml convert to go buildpack 2017-12-13 10:43:58 -08:00
CONTRIBUTING.md convert to go buildpack 2017-12-13 10:43:58 -08:00
Gopkg.lock convert to go buildpack 2017-12-13 10:43:58 -08:00
Gopkg.toml convert to go buildpack 2017-12-13 10:43:58 -08:00
LICENSE convert to go buildpack 2017-12-13 10:43:58 -08:00
README.md convert to go buildpack 2017-12-13 10:43:58 -08:00
contrib_test.go convert to go buildpack 2017-12-13 10:43:58 -08:00
magefile.go convert to go buildpack 2017-12-13 10:43:58 -08:00
main.go convert to go buildpack 2017-12-13 10:43:58 -08:00

README.md

mage

Mage is a make/rake-like build tool using Go.

Build Status

Demo

Mage Demo

Discussion

Join the #mage channel on gophers slack for discussion of usage, development, etc.

Documentation

see magefile.org for full docs

see godoc.org/github.com/magefile/mage/mage for how to use mage as a library.

Why?

Makefiles are hard to read and hard to write. Mostly because makefiles are essentially fancy bash scripts with significant white space and additional make-related syntax.

Mage lets you have multiple magefiles, name your magefiles whatever you want, and they're easy to customize for multiple operating systems. Mage has no dependencies (aside from go) and runs just fine on all major operating systems, whereas make generally uses bash which is not well supported on Windows. Go is superior to bash for any non-trivial task involving branching, looping, anything that's not just straight line execution of commands. And if your project is written in Go, why introduce another language as idiosyncratic as bash? Why not use the language your contributors are already comfortable with?

TODO

  • File conversion tasks