0.6.1 • Published 12 years ago

cc.ake v0.6.1

Weekly downloads
2
License
-
Repository
-
Last release
12 years ago

cc.ake

Installation

npm install -g cc.ake

Usage

ake    = require 'cc.ake'

# add node_modules binaries to head of path
do ake.nodeModulePath

# ensure every argument passes. strings are treated as unix commands and
# functions are run normally. Each type signals an error differently
# and any error causes the coffeescript process to exit.
ake.assertAll 'rm -f bad',
  'cp -n something somewhere' # if exit status is bad, terminate process
  'echo yo'
  ->
    do stuff
    return true # return anything other than string to signal success
  ->
    # this will terminate the coffeescript process
    return "an error string"
0.6.1

12 years ago

0.6.0

12 years ago

0.5.0

12 years ago

0.4.0

12 years ago

0.3.0

12 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.0

12 years ago