Call the test task what it is

This commit is contained in:
Scott Taylor 2009-09-29 22:55:23 -04:00
parent 72aca398ac
commit a9877659d1

View File

@ -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'