forked from jmesnil/stomp-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cakefile
86 lines (73 loc) · 2.68 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
fs = require 'fs'
{exec} = require 'child_process'
util = require 'util'
binDir = "./node_modules/.bin/"
task 'watch', 'Watch for changes in coffee files to build and test', ->
util.log "Watching for changes in src and test"
lastTest = 0
watchDir 'src', ->
invoke 'build:src'
invoke 'build:min'
invoke 'build:doc'
invoke 'build:test'
watchDir 'test', ->
invoke 'build:test'
watchDir 'dist/test', (file)->
# We only want to run tests once (a second),
# even if a bunch of test files change
time = new Date().getTime()
if (time-lastTest) > 1000
lastTest = time
invoke 'test'
task 'test', 'Run the tests', ->
util.log "Running tests..."
exec binDir + "jasmine-node --nocolor dist/test", (err, stdout, stderr) ->
if err
handleError(parseTestResults(stdout), stderr)
else
displayNotification "Tests pass!"
util.log lastLine(stdout)
task 'build', 'Build source and tests', ->
invoke 'build:src'
invoke 'build:min'
invoke 'build:test'
task 'build:src', 'Build the src files into lib', ->
util.log "Compiling src..."
exec binDir + "coffee -o lib/ -c src/", (err, stdout, stderr) ->
handleError(err) if err
task 'build:min', 'Build the minified files into lib', ->
util.log "Minify src..."
exec binDir + "uglifyjs -m --comments all -o lib/stomp.min.js lib/stomp.js", (err, stdout, stderr) ->
handleError(err) if err
task 'build:doc', 'Build docco documentation', ->
util.log "Building doc..."
exec binDir + "docco -o doc/ src/*.coffee", (err, stdout, stderr) ->
handleError(err) if err
task 'build:test', 'Build the test files into lib/test', ->
util.log "Compiling test..."
exec binDir + "coffee -o dist/test/ -c test/", (err, stdout, stderr) ->
handleError(err) if err
watchDir = (dir, callback) ->
fs.readdir dir, (err, files) ->
handleError(err) if err
for file in files then do (file) ->
fs.watchFile "#{dir}/#{file}", (curr, prev) ->
if +curr.mtime isnt +prev.mtime
callback "#{dir}/#{file}"
parseTestResults = (data) ->
lines = (line for line in data.split('\n') when line.length > 5)
results = lines.pop()
details = lines[1...lines.length-2].join('\n')
results + '\n\n' + details + '\n'
lastLine = (data) ->
(line for line in data.split('\n') when line.length > 5).pop()
handleError = (error, stderr) ->
if stderr? and !error
util.log stderr
displayNotification stderr.match(/\n(Error:[^\n]+)/)?[1]
else
util.log error
displayNotification error
displayNotification = (message = '') ->
options = { title: 'CoffeeScript' }
try require('growl').notify message, options