Sha256: f0071c6406026db18466152adb0cfcae7f4f7cf5c84b369931e3b11df83acbe0

Contents?: true

Size: 446 Bytes

Versions: 3

Compression:

Stored size: 446 Bytes

Contents

# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
# See the file LICENSE.txt included with the distribution for
# software license details.

namespace :ci do
  namespace :setup do
    task :rspec do
      rm_rf ENV["CI_REPORTS"] || "spec/reports"
      ENV["RSPECOPTS"] ||= ""
      ENV["RSPECOPTS"] += [" --require", "#{File.dirname(__FILE__)}/rspec_loader.rb", 
        "--format", "CI::Reporter::RSpec"].join(" ")
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ci_reporter-1.2.3 lib/ci/reporter/rake/rspec.rb
ci_reporter-1.2.4 lib/ci/reporter/rake/rspec.rb
ci_reporter-1.3.2 lib/ci/reporter/rake/rspec.rb