2010-02-16 01:04:48 -05:00
|
|
|
fs: require 'fs'
|
2010-02-16 19:38:52 -05:00
|
|
|
coffee: require 'coffee-script'
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-02-16 19:17:57 -05:00
|
|
|
# Run a CoffeeScript through our node/coffee interpreter.
|
|
|
|
run: (args) ->
|
2010-02-17 00:33:55 -05:00
|
|
|
proc: process.createChildProcess 'bin/coffee', args
|
2010-02-16 19:17:57 -05:00
|
|
|
proc.addListener 'error', (err) -> if err then puts err
|
|
|
|
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-02-17 01:24:02 -05:00
|
|
|
task 'install', 'install CoffeeScript into /usr/local', ->
|
|
|
|
exec([
|
|
|
|
'mkdir -p /usr/local/lib/coffee-script'
|
|
|
|
'cp -rf bin lib LICENSE README package.json src vendor /usr/local/lib/coffee-script'
|
2010-02-21 19:19:58 -05:00
|
|
|
'ln -sf /usr/local/lib/coffee-script/lib/bin/coffee /usr/local/bin/coffee'
|
|
|
|
'ln -sf /usr/local/lib/coffee-script/lib/bin/cake /usr/local/bin/cake'
|
2010-02-17 01:24:02 -05:00
|
|
|
].join(' && '))
|
|
|
|
|
|
|
|
|
2010-02-17 00:50:08 -05:00
|
|
|
task 'build', 'build the CoffeeScript language from source', ->
|
2010-02-21 14:06:01 -05:00
|
|
|
fs.readdir 'src', (err, files) ->
|
2010-02-16 19:17:57 -05:00
|
|
|
files: 'src/' + file for file in files when file.match(/\.coffee$/)
|
2010-02-17 00:55:56 -05:00
|
|
|
run ['-o', 'lib'].concat(files)
|
2010-02-16 19:17:57 -05:00
|
|
|
|
2010-02-16 20:42:10 -05:00
|
|
|
|
2010-02-21 11:40:52 -05:00
|
|
|
task 'build:parser', 'rebuild the Jison parser (run build first)', ->
|
2010-02-16 01:04:48 -05:00
|
|
|
parser: require('grammar').parser
|
|
|
|
js: parser.generate()
|
2010-02-17 00:55:56 -05:00
|
|
|
parser_path: 'lib/parser.js'
|
2010-02-19 18:27:50 -05:00
|
|
|
fs.writeFile parser_path, js
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-02-16 20:42:10 -05:00
|
|
|
|
2010-02-17 00:22:06 -05:00
|
|
|
task 'build:ultraviolet', 'build and install the Ultraviolet syntax highlighter', ->
|
|
|
|
exec('plist2syntax extras/CoffeeScript.tmbundle/Syntaxes/CoffeeScript.tmLanguage').addCallback ->
|
|
|
|
exec 'sudo mv coffeescript.yaml /usr/local/lib/ruby/gems/1.8/gems/ultraviolet-0.10.2/syntax/coffeescript.syntax'
|
|
|
|
|
|
|
|
|
|
|
|
task 'build:underscore', 'rebuild the Underscore.coffee documentation page', ->
|
|
|
|
exec 'uv -s coffeescript -t idle -h examples/underscore.coffee > documentation/underscore.html'
|
|
|
|
|
2010-02-19 18:27:50 -05:00
|
|
|
|
2010-02-16 20:42:10 -05:00
|
|
|
task 'test', 'run the CoffeeScript language test suite', ->
|
2010-02-16 19:38:52 -05:00
|
|
|
process.mixin require 'assert'
|
2010-02-16 20:42:10 -05:00
|
|
|
test_count: 0
|
|
|
|
start_time: new Date()
|
2010-02-17 19:29:37 -05:00
|
|
|
[original_ok, original_throws]: [ok, throws]
|
2010-02-16 20:42:10 -05:00
|
|
|
process.mixin {
|
2010-02-17 19:29:37 -05:00
|
|
|
ok: (args...) -> test_count += 1; original_ok(args...)
|
|
|
|
throws: (args...) -> test_count += 1; original_throws(args...)
|
2010-02-16 20:42:10 -05:00
|
|
|
}
|
|
|
|
process.addListener 'exit', ->
|
|
|
|
time: ((new Date() - start_time) / 1000).toFixed(2)
|
|
|
|
puts '\033[0;32mpassed ' + test_count + ' tests in ' + time + ' seconds\033[0m'
|
2010-02-21 14:06:01 -05:00
|
|
|
fs.readdir 'test', (err, files) ->
|
2010-02-16 19:38:52 -05:00
|
|
|
for file in files
|
2010-02-21 14:06:01 -05:00
|
|
|
fs.readFile 'test/' + file, (err, source) ->
|
2010-02-16 19:38:52 -05:00
|
|
|
js: coffee.compile source
|
2010-02-16 20:42:10 -05:00
|
|
|
process.compile js, file
|