-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cakefile
87 lines (73 loc) · 2.41 KB
/
Cakefile
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
fs = require 'fs'
{print} = require 'util'
which = require('which')
{spawn, exec} = require 'child_process'
# ANSI Terminal Colors
bold = '\x1B[0;1m'
red = '\x1B[0;31m'
green = '\x1B[0;32m'
reset = '\x1B[0m'
pkg = JSON.parse fs.readFileSync('./package.json')
testCmd = pkg.scripts.test
startCmd = pkg.scripts.start
log = (message, color, explanation) ->
console.log color + message + reset + ' ' + (explanation or '')
# Compiles app.coffee and src directory to the app directory
build = (callback) ->
options = ['-c','-b', '-o', 'app', 'src']
cmd = which.sync 'coffee'
coffee = spawn cmd, options
coffee.stdout.pipe process.stdout
coffee.stderr.pipe process.stderr
coffee.on 'exit', (status) -> callback?() if status is 0
# mocha test
test = (callback) ->
options = [
'--compilers'
'coffee:coffee-script'
'--colors'
'--require'
'should'
'--require'
'./server'
]
try
cmd = which.sync 'mocha'
spec = spawn cmd, options
spec.stdout.pipe process.stdout
spec.stderr.pipe process.stderr
spec.on 'exit', (status) -> callback?() if status is 0
catch err
log err.message, red
log 'Mocha is not installed - try npm install mocha -g', red
task 'docs', 'Generate annotated source code with Docco', ->
fs.readdir 'src', (err, contents) ->
files = ("src/#{file}" for file in contents when /\.coffee$/.test file)
try
cmd = which.sync 'docco'
docco = spawn cmd, files
docco.stdout.pipe process.stdout
docco.stderr.pipe process.stderr
docco.on 'exit', (status) -> callback?() if status is 0
catch err
log err.message, red
log 'Docco is not installed - try npm install docco -g', red
task 'build', ->
build -> log ":)", green
task 'spec', 'Run Mocha tests', ->
build -> test -> log ":)", green
task 'test', 'Run Mocha tests', ->
build -> test -> log ":)", green
task 'dev', 'start dev env', ->
# watch_coffee
options = ['-c', '-b', '-w', '-o', 'app', 'src']
cmd = which.sync 'coffee'
coffee = spawn cmd, options
coffee.stdout.pipe process.stdout
coffee.stderr.pipe process.stderr
log 'Watching coffee files', green
# watch_js
supervisor = spawn 'node', ['./node_modules/supervisor/lib/cli-wrapper.js','-w','app,views', '-e', 'js|jade', 'server']
supervisor.stdout.pipe process.stdout
supervisor.stderr.pipe process.stderr
log 'Watching js files and running server', green