thatcher / env-js forked from jeresig/env-js

A pure-JavaScript browser environment.

This URL has Read+Write access

env-js / Rakefile
100644 12 lines (9 sloc) 0.315 kb
1
2
3
4
5
6
7
8
9
10
11
12
# Ruby Rake file to allow automatic build testing on RunCodeRun.com
 
task :default => [:test]
 
task :test do
  classpath = [
   File.join(".", "rhino", "ant.jar"),
   File.join(".", "rhino", "ant-launcher.jar")
  ].join(File::PATH_SEPARATOR)
  exec "java -cp #{classpath} org.apache.tools.ant.Main -emacs all"
end