2009-12-18 09:55:31 -05:00
|
|
|
require 'erb'
|
2009-12-18 06:59:06 -05:00
|
|
|
require 'fileutils'
|
|
|
|
require 'rake/testtask'
|
2010-02-24 19:57:29 -05:00
|
|
|
require 'rubygems'
|
2010-02-24 20:41:56 -05:00
|
|
|
require 'yui/compressor'
|
2009-12-18 06:59:06 -05:00
|
|
|
|
2010-06-01 22:09:00 -04:00
|
|
|
HEADER = <<-EOS
|
|
|
|
/**
|
2010-07-12 08:17:26 -04:00
|
|
|
* CoffeeScript Compiler v0.7.2
|
2010-06-01 22:09:00 -04:00
|
|
|
* http://coffeescript.org
|
|
|
|
*
|
|
|
|
* Copyright 2010, Jeremy Ashkenas
|
|
|
|
* Released under the MIT License
|
|
|
|
*/
|
|
|
|
EOS
|
|
|
|
|
2009-12-18 09:55:31 -05:00
|
|
|
desc "Build the documentation page"
|
|
|
|
task :doc do
|
2009-12-19 22:55:58 -05:00
|
|
|
source = 'documentation/index.html.erb'
|
2010-07-29 00:51:35 -04:00
|
|
|
child = fork { exec "bin/coffee --no-wrap -cw -o documentation/js documentation/coffee/*.coffee" }
|
2009-12-21 12:15:13 -05:00
|
|
|
at_exit { Process.kill("INT", child) }
|
|
|
|
Signal.trap("INT") { exit }
|
2009-12-19 22:55:58 -05:00
|
|
|
loop do
|
|
|
|
mtime = File.stat(source).mtime
|
|
|
|
if !@mtime || mtime > @mtime
|
|
|
|
rendered = ERB.new(File.read(source)).result(binding)
|
|
|
|
File.open('index.html', 'w+') {|f| f.write(rendered) }
|
|
|
|
end
|
|
|
|
@mtime = mtime
|
|
|
|
sleep 1
|
|
|
|
end
|
2009-12-18 09:55:31 -05:00
|
|
|
end
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
|
|
desc "Build the single concatenated and minified script for the browser"
|
|
|
|
task :browser do
|
2010-03-09 21:24:30 -05:00
|
|
|
sources = %w(helpers.js rewriter.js lexer.js parser.js scope.js nodes.js coffee-script.js)
|
2010-02-24 19:57:29 -05:00
|
|
|
code = sources.map {|s| File.read('lib/' + s) }.join('')
|
2010-06-28 00:19:58 -04:00
|
|
|
code = YUI::JavaScriptCompressor.new.compress(code)
|
2010-06-01 22:09:00 -04:00
|
|
|
File.open('extras/coffee-script.js', 'w+') {|f| f.write(HEADER + code) }
|
2010-02-24 19:57:29 -05:00
|
|
|
end
|
|
|
|
|