add ci_reporter, so you may have nice junit reports on the CI

This commit is contained in:
Tim Felgentreff 2011-06-09 13:41:24 +02:00
parent 7ce7dc9fce
commit 4f013c2ea1
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ source :rubygems unless ENV['QUICK']
gem 'rake'
gem 'rack-test', '>= 0.5.6'
gem 'ci_reporter'
# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
# Used by the CI.

View File

@ -2,6 +2,7 @@ require 'rake/clean'
require 'rake/testtask'
require 'fileutils'
require 'date'
require 'ci/reporter/rake/test_unit'
task :default => :test
task :spec => :test