diff --git a/Rakefile b/Rakefile index acc9c2ea..baf41f82 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require 'yui/compressor' HEADER = <<-EOS /** - * CoffeeScript Compiler v0.9.0 + * CoffeeScript Compiler v0.9.1 * http://coffeescript.org * * Copyright 2010, Jeremy Ashkenas diff --git a/documentation/coffee/block_comment.coffee b/documentation/coffee/block_comment.coffee index f1cce0b8..6c7eb471 100644 --- a/documentation/coffee/block_comment.coffee +++ b/documentation/coffee/block_comment.coffee @@ -1,4 +1,4 @@ ### -CoffeeScript Compiler v0.9.0 +CoffeeScript Compiler v0.9.1 Released under the MIT License ### \ No newline at end of file diff --git a/documentation/docs/cake.html b/documentation/docs/cake.html index 1ed917b5..785c46d2 100644 --- a/documentation/docs/cake.html +++ b/documentation/docs/cake.html @@ -34,10 +34,10 @@ If no tasks are passed, print the help screen.
for all name, task of tasks spaces = 20 - name.length spaces = if spaces > 0 then (' ' for i in [0..spaces]).join('') else '' - desc = if task.description then "# #task.description" else '' - puts "cake #name#spaces #desc" + desc = if task.description then "# #{task.description}" else '' + puts "cake #{name}#{spaces} #{desc}" puts oparse.help() if switches.lengthPrint an error and exit when attempting to all an undefined task.
missingTask = (task) ->
- puts "No such task: \"#task\""
+ puts "No such task: \"#{task}\""
process.exit 1