2010-07-25 01:23:37 -04:00
|
|
|
fs = require 'fs'
|
|
|
|
{helpers} = require './lib/helpers'
|
|
|
|
CoffeeScript = require './lib/coffee-script'
|
|
|
|
{spawn, exec} = require 'child_process'
|
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-07-18 07:54:44 -04:00
|
|
|
proc.stderr.on 'data', (buffer) -> puts buffer.toString()
|
|
|
|
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-06-15 21:33:53 -04:00
|
|
|
puts "$color$message$reset ${explanation or ''}"
|
|
|
|
|
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'
|
|
|
|
lib = "$base/lib/coffee-script"
|
|
|
|
bin = "$base/bin"
|
|
|
|
node = "~/.node_libraries/coffee-script"
|
|
|
|
puts "Installing CoffeeScript to $lib"
|
|
|
|
puts "Linking to $node"
|
|
|
|
puts "Linking 'coffee' to $bin/coffee"
|
2010-02-17 01:24:02 -05:00
|
|
|
exec([
|
2010-03-31 21:30:14 -04:00
|
|
|
"mkdir -p $lib $bin"
|
2010-06-28 00:26:45 -04:00
|
|
|
"cp -rf bin lib LICENSE README package.json src $lib"
|
2010-06-15 21:33:53 -04:00
|
|
|
"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-06-15 21:33:53 -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'
|
|
|
|
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()
|
|
|
|
parserPath = 'lib/parser.js'
|
2010-06-12 19:05:13 -04:00
|
|
|
fs.writeFile parserPath, 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-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-21 10:26:44 -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-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-07-25 01:23:37 -04:00
|
|
|
passedTests = failedTests = 0
|
|
|
|
startTime = new Date
|
|
|
|
originalOk = ok
|
2010-03-16 01:53:25 -04:00
|
|
|
helpers.extend global, {
|
2010-06-12 19:05:13 -04:00
|
|
|
ok: (args...) -> passedTests += 1; originalOk(args...)
|
2010-03-08 23:07:26 -05:00
|
|
|
CoffeeScript: CoffeeScript
|
2010-02-16 20:42:10 -05:00
|
|
|
}
|
2010-07-18 07:54:44 -04:00
|
|
|
process.on 'exit', ->
|
2010-07-25 01:23:37 -04:00
|
|
|
time = ((new Date - startTime) / 1000).toFixed(2)
|
|
|
|
message = "passed $passedTests tests in $time seconds$reset"
|
2010-06-15 21:33:53 -04:00
|
|
|
if failedTests
|
|
|
|
log "failed $failedTests and $message", red
|
|
|
|
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-25 01:23:37 -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
|
2010-06-12 19:05:13 -04:00
|
|
|
failedTests += 1
|
2010-06-15 21:33:53 -04:00
|
|
|
log "failed $source", red, '\n' + err.stack.toString()
|