From c25efe0c962e98cc75819c8667984b56ca7cfa88 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Sun, 11 Dec 2011 21:47:16 -0600 Subject: [PATCH] Add compile task as dependency of test task. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 911ce76..604f80c 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,7 @@ end desc 'Run the tests' task :default => [:test] -Rake::TestTask.new do |t| +Rake::TestTask.new(:test => [:compile]) do |t| t.pattern = 'spec/**/*_spec.rb' t.libs.push 'spec' end