Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 593 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 593 Bytes

Gake

Merge of Grunt and Cake.

  1. Add 'gake' to /usr(/local)/bin or symbolic link to it.
  2. Add a Gakefile to project root.
  3. 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"
    }
]