Sha256: 70331c645dc553ba453c53f51f4938242199d7407684973ec38f77f5beb37341

Contents?: true

Size: 538 Bytes

Versions: 10

Compression:

Stored size: 538 Bytes

Contents

require 'rake'
require 'spec/rake/spectask'

Spec::Rake::SpecTask.new(:rcov) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_dir = 'coverage'
  t.rcov_opts << '--sort coverage --text-summary --aggregate coverage.data'
end

Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.spec_opts << "--options" << "lib/spec.opts" <<
          "--require" << "lib/watirspec/html_formatter" <<
          "--format" << "WatiRspec::HtmlFormatter:results/index.html"
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
watirspec-0.1.9.1 Rakefile
watirspec-0.1.8 Rakefile
watirspec-0.1.7 Rakefile
watirspec-0.1.6 Rakefile
watirspec-0.1.5 Rakefile
watirspec-0.1.4 Rakefile
watirspec-0.1.3 Rakefile
watirspec-0.1.2 Rakefile
watirspec-0.1.1 Rakefile
watirspec-0.1.0 Rakefile