From 820504bbd5b87da769c941e990f3ab2a28485335 Mon Sep 17 00:00:00 2001 From: Zach Carter Date: Tue, 14 Dec 2010 19:10:41 -0500 Subject: [PATCH] Use 'spec' task instead of 'test'. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e10b950d..d9024063 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,7 @@ task :spec => [:release] do system "rspec -cfs spec" end -task :default => [:compile, :test] +task :default => [:compile, :spec] def remove_exports(string) match = string.match(%r{^// BEGIN\(BROWSER\)\n(.*)\n^// END\(BROWSER\)}m)