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-25 21:53:42 -05:00
|
|
|
option '-p', '--prefix [DIR]', 'set the installation prefix for `cake install`'
|
2010-02-25 21:43:42 -05:00
|
|
|
|
|
|
|
task 'install', 'install CoffeeScript into /usr/local (or --prefix)', (options) ->
|
|
|
|
base: options.prefix or '/usr/local'
|
|
|
|
lib: base + '/lib/coffee-script'
|
2010-02-17 01:24:02 -05:00
|
|
|
exec([
|
2010-02-25 21:43:42 -05:00
|
|
|
'mkdir -p ' + lib
|
|
|
|
'cp -rf bin lib LICENSE README package.json src vendor ' + lib
|
2010-02-26 19:49:12 -05:00
|
|
|
'ln -sf ' + lib + '/bin/coffee ' + base + '/bin/coffee'
|
|
|
|
'ln -sf ' + lib + '/bin/cake ' + base + '/bin/cake'
|
|
|
|
].join(' && '), (err, stdout, stderr) ->
|
|
|
|
if err then print stderr
|
|
|
|
)
|
2010-02-17 01:24:02 -05:00
|
|
|
|
|
|
|
|
2010-02-17 00:50:08 -05:00
|
|
|
task 'build', 'build the CoffeeScript language from source', ->
|
2010-02-25 21:53:42 -05:00
|
|
|
files: fs.readdirSync 'src'
|
|
|
|
files: 'src/' + file for file in files when file.match(/\.coffee$/)
|
2010-02-27 00:38:04 -05:00
|
|
|
run ['-c', '-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-28 10:37:12 -05:00
|
|
|
require.paths.unshift 'vendor/jison/lib'
|
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', ->
|
2010-02-22 09:09:35 -05:00
|
|
|
exec 'plist2syntax extras/CoffeeScript.tmbundle/Syntaxes/CoffeeScript.tmLanguage', (err) ->
|
2010-02-17 00:22:06 -05:00
|
|
|
exec 'sudo mv coffeescript.yaml /usr/local/lib/ruby/gems/1.8/gems/ultraviolet-0.10.2/syntax/coffeescript.syntax'
|
|
|
|
|
|
|
|
|
2010-02-24 19:57:29 -05:00
|
|
|
task 'build:browser', 'rebuild the merged script for inclusion in the browser', ->
|
2010-03-02 16:52:55 -05:00
|
|
|
exec 'rake browser', (err) ->
|
|
|
|
throw err if err
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
|
|
|
2010-03-06 19:02:31 -05:00
|
|
|
task 'doc:site', 'watch and continually rebuild the documentation for the website', ->
|
2010-02-24 19:57:29 -05:00
|
|
|
exec 'rake doc'
|
|
|
|
|
|
|
|
|
2010-03-06 19:02:31 -05:00
|
|
|
task 'doc:source', 'rebuild the internal documentation', ->
|
2010-03-07 00:28:58 -05:00
|
|
|
exec 'docco src/*.coffee && cp -rf docs documentation && rm -r docs', (err) ->
|
2010-03-06 20:30:40 -05:00
|
|
|
throw err if err
|
2010-03-06 19:02:31 -05:00
|
|
|
|
|
|
|
|
2010-03-07 19:07:37 -05:00
|
|
|
task 'doc:underscore', 'rebuild the Underscore.coffee documentation page', ->
|
|
|
|
exec 'uv -s coffeescript -t idle -h examples/underscore.coffee > documentation/underscore.html'
|
|
|
|
|
|
|
|
|
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
|