2010-07-25 01:23:37 -04:00
|
|
|
fs = require 'fs'
|
|
|
|
CoffeeScript = require './lib/coffee-script'
|
|
|
|
{spawn, exec} = require 'child_process'
|
2010-09-20 23:32:37 -04:00
|
|
|
path = require 'path'
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
# ANSI Terminal Colors.
|
2010-07-25 01:23:37 -04:00
|
|
|
red = '\033[0;31m'
|
|
|
|
green = '\033[0;32m'
|
|
|
|
reset = '\033[0m'
|
2010-06-15 21:33:53 -04:00
|
|
|
|
2010-02-16 19:17:57 -05:00
|
|
|
# Run a CoffeeScript through our node/coffee interpreter.
|
2010-07-25 01:23:37 -04:00
|
|
|
run = (args) ->
|
|
|
|
proc = spawn 'bin/coffee', args
|
2010-10-24 12:48:42 -04:00
|
|
|
proc.stderr.on 'data', (buffer) -> console.log buffer.toString()
|
2010-07-18 07:54:44 -04:00
|
|
|
proc.on 'exit', (status) -> process.exit(1) if status != 0
|
2010-02-16 01:04:48 -05:00
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
# Log a message with a color.
|
2010-07-25 01:23:37 -04:00
|
|
|
log = (message, color, explanation) ->
|
2010-10-24 12:48:42 -04:00
|
|
|
console.log color + message + reset + ' ' + (explanation or '')
|
2010-06-15 21:33:53 -04: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) ->
|
2010-07-25 01:23:37 -04:00
|
|
|
base = options.prefix or '/usr/local'
|
2010-08-07 08:02:16 -04:00
|
|
|
lib = "#{base}/lib/coffee-script"
|
|
|
|
bin = "#{base}/bin"
|
2010-07-25 01:23:37 -04:00
|
|
|
node = "~/.node_libraries/coffee-script"
|
2010-10-24 12:48:42 -04:00
|
|
|
console.log "Installing CoffeeScript to #{lib}"
|
|
|
|
console.log "Linking to #{node}"
|
|
|
|
console.log "Linking 'coffee' to #{bin}/coffee"
|
2010-02-17 01:24:02 -05:00
|
|
|
exec([
|
2010-08-07 08:02:16 -04:00
|
|
|
"mkdir -p #{lib} #{bin}"
|
|
|
|
"cp -rf bin lib LICENSE README package.json src #{lib}"
|
|
|
|
"ln -sf #{lib}/bin/coffee #{bin}/coffee"
|
|
|
|
"ln -sf #{lib}/bin/cake #{bin}/cake"
|
2010-06-15 20:40:10 -04:00
|
|
|
"mkdir -p ~/.node_libraries"
|
2010-08-07 08:02:16 -04:00
|
|
|
"ln -sf #{lib}/lib #{node}"
|
2010-02-26 19:49:12 -05:00
|
|
|
].join(' && '), (err, stdout, stderr) ->
|
2010-06-15 21:33:53 -04:00
|
|
|
if err then print stderr else log 'done', green
|
2010-02-26 19:49:12 -05:00
|
|
|
)
|
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-07-25 01:23:37 -04:00
|
|
|
files = fs.readdirSync 'src'
|
2010-10-24 14:11:09 -04:00
|
|
|
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-06-28 00:26:45 -04:00
|
|
|
require 'jison'
|
2010-07-25 01:23:37 -04:00
|
|
|
parser = require('./lib/grammar').parser
|
|
|
|
js = parser.generate()
|
2010-09-20 23:13:02 -04:00
|
|
|
# TODO: Remove this when the Jison patch is released.
|
2010-10-05 11:43:44 -04:00
|
|
|
js = js.replace 'if (require.main === module)', "if (typeof module !== 'undefined' && require.main === module)"
|
2010-09-20 23:13:02 -04:00
|
|
|
fs.writeFile 'lib/parser.js', 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-09-26 10:38:28 -04:00
|
|
|
task 'bench', 'quick benchmark of compilation time (of everything in src)', ->
|
|
|
|
exec 'time bin/coffee -p src/ > /dev/null', (err, stdout, stderr) ->
|
|
|
|
print stderr
|
2010-03-07 19:07:37 -05:00
|
|
|
|
2010-07-21 10:26:44 -04:00
|
|
|
task 'loc', 'count the lines of source code in the CoffeeScript compiler', ->
|
2010-07-25 01:23:37 -04:00
|
|
|
sources = ['src/coffee-script.coffee', 'src/grammar.coffee', 'src/helpers.coffee', 'src/lexer.coffee', 'src/nodes.coffee', 'src/rewriter.coffee', 'src/scope.coffee']
|
2010-07-26 23:31:55 -04:00
|
|
|
exec "cat #{ sources.join(' ') } | 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-10-11 10:42:13 -04:00
|
|
|
runTests = (CoffeeScript) ->
|
2010-09-27 01:17:05 -04:00
|
|
|
startTime = Date.now()
|
2010-07-25 01:23:37 -04:00
|
|
|
passedTests = failedTests = 0
|
2010-10-24 11:14:58 -04:00
|
|
|
for all name, func of require 'assert' then do (name, func) =>
|
|
|
|
global[name] = -> ++passedTests; func arguments...
|
2010-09-27 01:17:05 -04:00
|
|
|
global.eq = global.strictEqual
|
|
|
|
global.CoffeeScript = CoffeeScript
|
2010-07-18 07:54:44 -04:00
|
|
|
process.on 'exit', ->
|
2010-09-27 01:17:05 -04:00
|
|
|
time = ((Date.now() - startTime) / 1000).toFixed(2)
|
2010-08-07 08:02:16 -04:00
|
|
|
message = "passed #{passedTests} tests in #{time} seconds#{reset}"
|
2010-06-15 21:33:53 -04:00
|
|
|
if failedTests
|
2010-08-07 08:02:16 -04:00
|
|
|
log "failed #{failedTests} and #{message}", red
|
2010-06-15 21:33:53 -04:00
|
|
|
else
|
|
|
|
log message, green
|
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-07-30 20:37:12 -04:00
|
|
|
fileName = path.join 'test', file
|
|
|
|
fs.readFile fileName, (err, code) ->
|
2010-03-21 11:28:05 -04:00
|
|
|
try
|
2010-07-30 20:37:12 -04:00
|
|
|
CoffeeScript.run code.toString(), {fileName}
|
2010-03-21 11:28:05 -04:00
|
|
|
catch err
|
2010-06-12 19:05:13 -04:00
|
|
|
failedTests += 1
|
2010-08-07 08:02:16 -04:00
|
|
|
log "failed #{fileName}", red, '\n' + err.stack.toString()
|
2010-10-11 10:42:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
task 'test', 'run the CoffeeScript language test suite', ->
|
|
|
|
runTests CoffeeScript
|
|
|
|
|
|
|
|
|
|
|
|
task 'test:browser', 'run the test suite against the merged browser script', ->
|
|
|
|
source = fs.readFileSync 'extras/coffee-script.js', 'utf-8'
|
2010-10-11 13:27:05 -04:00
|
|
|
result = {}
|
|
|
|
(-> eval source).call result
|
|
|
|
runTests result.CoffeeScript
|