2010-04-25 22:29:43 -04:00
|
|
|
fs: require 'fs'
|
2010-04-25 23:54:47 -04:00
|
|
|
{helpers}: require('./lib/helpers')
|
2010-04-25 22:29:43 -04:00
|
|
|
CoffeeScript: require './lib/coffee-script'
|
|
|
|
{spawn, exec}: require('child_process')
|
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-04-10 18:05:35 -04:00
|
|
|
proc: spawn 'bin/coffee', args
|
2010-04-24 22:13:13 -04:00
|
|
|
proc.stderr.addListener 'data', (buffer) -> puts buffer.toString()
|
2010-04-26 02:08:19 -04:00
|
|
|
proc.addListener 'exit', (status) -> process.exit(1) if status != 0
|
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'
|
2010-03-31 21:30:14 -04:00
|
|
|
lib: "$base/lib/coffee-script"
|
|
|
|
bin: "$base/bin"
|
2010-02-17 01:24:02 -05:00
|
|
|
exec([
|
2010-03-31 21:30:14 -04:00
|
|
|
"mkdir -p $lib $bin"
|
|
|
|
"cp -rf bin lib LICENSE README package.json src vendor $lib"
|
|
|
|
"ln -sf $lib/bin/coffee $base/bin/coffee"
|
|
|
|
"ln -sf $lib/bin/cake $base/bin/cake"
|
2010-04-20 20:20:38 -04:00
|
|
|
"mkdir -p ~/.node_libraries"
|
|
|
|
"ln -sf $lib/lib ~/.node_libraries/coffee-script"
|
2010-02-26 19:49:12 -05:00
|
|
|
].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-03-08 20:57:28 -05:00
|
|
|
task 'build:full', 'rebuild the source twice, and run the tests', ->
|
|
|
|
exec 'bin/cake build && bin/cake build && bin/cake test', (err, stdout, stderr) ->
|
2010-03-08 06:34:07 -05:00
|
|
|
print stdout if stdout
|
|
|
|
print stderr if stderr
|
|
|
|
throw err if err
|
|
|
|
|
|
|
|
|
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-03-16 19:36:08 -04:00
|
|
|
parser: require('./lib/grammar').parser
|
2010-02-16 01:04:48 -05:00
|
|
|
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-03-14 11:59:55 -04:00
|
|
|
exec 'plist2syntax ../coffee-script-tmbundle/Syntaxes/CoffeeScript.tmLanguage', (err) ->
|
|
|
|
throw err if 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', ->
|
2010-03-16 19:13:13 -04:00
|
|
|
exec 'docco examples/underscore.coffee && cp -rf docs documentation && rm -r docs', (err) ->
|
|
|
|
throw err if err
|
2010-03-07 19:07:37 -05:00
|
|
|
|
|
|
|
|
2010-06-11 18:47:48 -04:00
|
|
|
task 'loc', 'count the lines of source code in CoffeeScript', ->
|
|
|
|
exec "cat src/*.coffee | grep -v '^\\( *#\\|\\s*$\\)' | wc -l | tr -s ' '", (err, stdout) ->
|
2010-06-11 18:53:12 -04:00
|
|
|
print stdout
|
2010-06-11 18:47:48 -04:00
|
|
|
|
|
|
|
|
2010-02-16 20:42:10 -05:00
|
|
|
task 'test', 'run the CoffeeScript language test suite', ->
|
2010-03-16 01:53:25 -04:00
|
|
|
helpers.extend global, require 'assert'
|
2010-03-21 11:28:05 -04:00
|
|
|
passed_tests: failed_tests: 0
|
2010-04-11 05:05:49 -04:00
|
|
|
start_time: new Date()
|
|
|
|
original_ok: ok
|
2010-03-16 01:53:25 -04:00
|
|
|
helpers.extend global, {
|
2010-03-21 11:28:05 -04:00
|
|
|
ok: (args...) -> passed_tests += 1; original_ok(args...)
|
2010-03-08 23:07:26 -05:00
|
|
|
CoffeeScript: CoffeeScript
|
2010-02-16 20:42:10 -05:00
|
|
|
}
|
2010-03-21 04:59:33 -04:00
|
|
|
red: '\033[0;31m'
|
|
|
|
green: '\033[0;32m'
|
|
|
|
reset: '\033[0m'
|
2010-04-11 05:05:49 -04:00
|
|
|
process.addListener 'exit', ->
|
2010-02-16 20:42:10 -05:00
|
|
|
time: ((new Date() - start_time) / 1000).toFixed(2)
|
2010-03-21 11:28:05 -04:00
|
|
|
message: "passed $passed_tests tests in $time seconds$reset"
|
|
|
|
puts(if failed_tests then "${red}failed $failed_tests and $message" else "$green$message")
|
2010-02-21 14:06:01 -05:00
|
|
|
fs.readdir 'test', (err, files) ->
|
2010-03-14 12:33:41 -04:00
|
|
|
files.forEach (file) ->
|
2010-03-21 04:59:33 -04:00
|
|
|
return unless file.match(/\.coffee$/i)
|
2010-03-16 06:54:49 -04:00
|
|
|
source: path.join 'test', file
|
2010-03-21 11:28:05 -04:00
|
|
|
fs.readFile source, (err, code) ->
|
|
|
|
try
|
2010-05-15 00:34:14 -04:00
|
|
|
CoffeeScript.run code.toString(), {source: source}
|
2010-03-21 11:28:05 -04:00
|
|
|
catch err
|
|
|
|
failed_tests += 1
|
|
|
|
puts "${red}failed:${reset} $source"
|
|
|
|
puts err.stack
|