adding a doc:source Cake task to document CoffeeScript's internals

This commit is contained in:
Jeremy Ashkenas 2010-03-06 19:02:31 -05:00
parent 9b262d56a5
commit 5b3ef78101
1 changed files with 5 additions and 1 deletions

View File

@ -50,10 +50,14 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser',
throw err if err
task 'doc', 'watch and continually rebuild the documentation', ->
task 'doc:site', 'watch and continually rebuild the documentation for the website', ->
exec 'rake doc'
task 'doc:source', 'rebuild the internal documentation', ->
exec 'docco src/*.coffee && mv docs documentation/docs'
task 'test', 'run the CoffeeScript language test suite', ->
process.mixin require 'assert'
test_count: 0