Make the default rake task [:test, :spec]

This commit is contained in:
Scott Taylor 2010-01-12 08:50:27 -05:00
parent 491da764d1
commit 522d871217

View File

@ -5,7 +5,7 @@ task :test do
Dir['test/**/*_test.rb'].each { |file| require file }
end
task :default => :test
task :default => [:test, :spec]
begin
require 'spec/rake/spectask'