Rakefile in andhapp-decoct-1.9.8 vs Rakefile in andhapp-decoct-1.9.9

- old
+ new

@@ -17,5 +17,15 @@ gem.add_dependency 'rcov' end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end + +desc "rake task to run all the tests" +Rake::TestTask.new do |t| + t.libs << "lib" + t.test_files = FileList['test/**/ts_*.rb'] + t.verbose = true + t.ruby_opts = ['-rubygems'] +end + +task :default => [:test] \ No newline at end of file