Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# In rails 1.2, plugins aren't available in the path until they're loaded.
# Check to see if the rspec plugin is installed first and require
# it if it is.  If not, use the gem version.
rspec_base = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec/lib')
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base)
require 'spec/rake/spectask'
require 'spec/translator'

namespace :spec do
  desc "Print HTML documentation of spec"
  Spec::Rake::SpecTask.new(:html_doc) do |t|
    t.spec_opts = ["--format", "html:spec/report.html", "--dry-run"]
    t.spec_files = FileList['spec/**/*_spec.rb']
  end
end