From a9877659d1c9d137fa4a13b6a089b716a97de4fd Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 29 Sep 2009 22:55:23 -0400 Subject: [PATCH] Call the test task what it is --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index a87500b..537dd22 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,10 @@ -task :default do +desc "Run tests" +task :test do Dir['test/**/*_test.rb'].each { |file| require file } end +task :default => :test + begin require 'jeweler'