1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Make CI Reporter optional

This commit is contained in:
Tim Felgentreff 2011-06-09 13:46:30 +02:00
parent 4f013c2ea1
commit e187ec85ee
2 changed files with 8 additions and 3 deletions

View file

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

View file

@ -2,7 +2,12 @@ require 'rake/clean'
require 'rake/testtask'
require 'fileutils'
require 'date'
require 'ci/reporter/rake/test_unit'
# CI Reporter is only needed for the CI
begin
require 'ci/reporter/rake/test_unit'
rescue LoadError
end
task :default => :test
task :spec => :test