Rakefile in rails_semantic_logger-3.1.1 vs Rakefile in rails_semantic_logger-3.3.0

- old
+ new

@@ -12,5 +12,17 @@ system "git tag -a v#{RailsSemanticLogger::VERSION} -m 'Tagging #{RailsSemanticLogger::VERSION}'" system 'git push --tags' system "gem push rails_semantic_logger-#{RailsSemanticLogger::VERSION}.gem" system "rm rails_semantic_logger-#{RailsSemanticLogger::VERSION}.gem" end + +desc 'Run Test Suite' +task :test do + Rake::TestTask.new(:functional) do |t| + t.test_files = FileList['test/**/*_test.rb'] + t.verbose = true + end + + Rake::Task['functional'].invoke +end + +task default: :test