Rakefile in tam-1.1.1 vs Rakefile in tam-1.2.0

- old
+ new

@@ -26,6 +26,15 @@ end desc "Clean automatically generated files" task :clean do FileUtils.rm_rf "pkg" -end +end + +require 'spec/rake/spectask' + +Spec::Rake::SpecTask.new(:spec) do |t| + t.spec_files = Dir.glob('spec/**/*_spec.rb') +end + +desc "Run tests" +task :default => :spec \ No newline at end of file