Sha256: 6831441a76083b5f865e786fc838f710ad18b708967ec454c046167ac04577cb

Contents?: true

Size: 874 Bytes

Versions: 2

Compression:

Stored size: 874 Bytes

Contents

begin
  require 'spec'
rescue LoadError
  require 'rubygems'
  require 'spec'
end
begin
  require 'spec/rake/spectask'
rescue LoadError
  puts <<-EOS
To use rspec for testing you must install rspec gem:
    gem install rspec
EOS
  exit(0)
end

task :test do
end

$:.unshift(File.join(File.dirname(__FILE__), '..'))
require 'spec/stubs'

desc "Run the specs under spec/models"
Spec::Rake::SpecTask.new do |t|
  t.spec_opts = ['--options', "spec/spec.opts"]
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_opts = ['--include',
                 '"lib/rhom/*,lib/rho/*"',
                 '--exclude',
                 '"spec/*,lib/date.rb,lib/rational.rb,lib/time.rb,lib/find.rb,config.rb,lib/erb.rb,lib/singleton.rb,lib/pairparser.rb,/Library/Ruby/Gems/*,/var/lib/gems/*,/usr/lib/ruby"',
                 '--text-report',
                 '--html']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rhodes-0.1.1 tasks/rspec.rake
rhodes-0.1.0 tasks/rspec.rake