-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCakefile
More file actions
52 lines (41 loc) · 1.53 KB
/
Cakefile
File metadata and controls
52 lines (41 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
fs = require 'fs'
{print} = require 'sys'
{spawn, exec} = require 'child_process'
# ANSI Terminal Colors
bold = '\033[0;1m'
green = '\033[0;32m'
reset = '\033[0m'
red = '\033[0;31m'
log = (message, color, explanation) ->
console.log color + message + reset + ' ' + (explanation or '')
build = (watch, callback) ->
if typeof watch is 'function'
callback = watch
watch = false
options = ['-c', '-o', 'lib', 'src']
options.unshift '-w' if watch
coffee = spawn 'coffee', options
coffee.stdout.on 'data', (data) -> print data.toString()
coffee.stderr.on 'data', (data) -> log data.toString(), red
coffee.on 'exit', (status) -> callback?() if status is 0
task 'docs', 'Generate annotated source code with Docco', ->
fs.readdir 'src', (err, contents) ->
files = ("src/#{file}" for file in contents when /\.coffee$/.test file)
docco = spawn 'docco', files
docco.stdout.on 'data', (data) -> print data.toString()
docco.stderr.on 'data', (data) -> log data.toString(), red
docco.on 'exit', (status) -> callback?() if status is 0
test = (callback) ->
spec = spawn './node_modules/mocha/bin/mocha'
spec.stdout.on 'data', (data) -> print data.toString()
spec.stderr.on 'data', (data) -> log data.toString(), red
spec.on 'exit', (status) -> callback?() if status is 0
task 'test', ->
test -> console.log 'Done!'
task 'build', ->
build -> log ":)", green
task 'watch', ->
build true, -> log ":)", green
# TODO
# task 'auto', 'Watch and Run Spec', ->
# build true, -> spec -> log ":)", green