From 6c997978bc3108344da5e2a902c5e8137d488281 Mon Sep 17 00:00:00 2001
From: Jeremy Ashkenas
Date: Wed, 11 Aug 2010 00:40:15 -0400
Subject: [PATCH] CoffeeScript 0.9.1 is on the books.
---
Rakefile | 2 +-
documentation/coffee/block_comment.coffee | 2 +-
documentation/docs/cake.html | 6 +-
documentation/docs/coffee-script.html | 4 +-
documentation/docs/command.html | 86 +++----
documentation/docs/grammar.html | 6 +-
documentation/docs/lexer.html | 55 ++---
documentation/docs/nodes.html | 223 +++++++++---------
documentation/docs/optparse.html | 19 +-
documentation/docs/repl.html | 2 +-
documentation/docs/rewriter.html | 228 ++++++++-----------
documentation/docs/scope.html | 2 +-
documentation/index.html.erb | 21 +-
documentation/js/aliases.js | 6 +-
documentation/js/block_comment.js | 2 +-
documentation/js/cake_tasks.js | 4 +-
documentation/js/interpolation.js | 2 +-
documentation/js/interpolation_expression.js | 2 +-
documentation/js/overview.js | 2 +-
extras/coffee-script.js | 4 +-
index.html | 55 +++--
lib/coffee-script.js | 14 +-
lib/helpers.js | 10 +-
lib/lexer.js | 4 +-
lib/nodes.js | 36 ++-
lib/rewriter.js | 22 +-
lib/scope.js | 8 +-
package.json | 2 +-
src/coffee-script.coffee | 2 +-
src/nodes.coffee | 7 +-
30 files changed, 446 insertions(+), 392 deletions(-)
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.length | Print 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
|