Merge of Grunt and Cake.
- Add 'gake' to /usr(/local)/bin or symbolic link to it.
- Add a Gakefile to project root.
- Run 'gake' in project root.
Gakefile is a simple JSON:
[
{
"description": "Copying a JS lib",
"command": "cp /my/dev/lib.js /my/prod/js/lib/"
},
{
"description": "Compile Coffee to JS",
"command": "coffee -c -o /my/prod/js /my/dev/coffee"
},
{
"description": "Crunch it with require.js",
"command": "r.js -o /my/dev/build.js"
}
]