blob: 6652bbf59295bf3c6c95e768529c23d7fd635f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# -*- coding: UTF-8 -*-
#
#if HAVE_SPEC_RAKE_SPECTASK and not PROJ.spec.files.to_a.empty?
require 'rspec/core/rake_task'
#
namespace :spec do
desc 'Run all specs with basic output'
RSpec::Core::RakeTask.new(:run) do |t|
t.ruby_opts = PROJ.ruby_opts
t.rspec_opts = PROJ.spec.opts
# t.libs += PROJ.libs
end
desc 'Run all specs with text output'
RSpec::Core::RakeTask.new(:doc) do |t|
t.ruby_opts = PROJ.ruby_opts
t.rspec_opts = PROJ.spec.opts + ['-fs' ]
# t.libs += PROJ.libs
end
desc 'Run all specs with html output'
RSpec::Core::RakeTask.new(:html) do |t|
t.ruby_opts = PROJ.ruby_opts
t.rspec_opts = PROJ.spec.opts + ['-fh' ]
# t.libs += PROJ.libs
end
if HAVE_RCOV
desc 'Run all specs with RCov'
RSpec::Core::RakeTask.new(:rcov) do |t|
t.ruby_opts = PROJ.ruby_opts
t.rspec_opts = PROJ.spec.opts
# t.libs += PROJ.libs
t.rcov = true
# t.rcov_path = PROJ.rcov.dir
t.rcov_opts = PROJ.rcov.opts + ['--exclude', 'spec']
end
# RCov::VerifyTask.new(:verify) do |t|
# t.threshold = PROJ.rcov.threshold
# t.index_html = File.join(PROJ.rcov.dir, 'index.html')
# t.require_exact_threshold = PROJ.rcov.threshold_exact
# end
# task :verify => :rcov
# remove_desc_for_task %w(spec:clobber_rcov)
end
end # namespace :spec
desc 'Alias to spec:run'
task :spec => 'spec:run'
#task :clobber => 'spec:clobber_rcov' if HAVE_RCOV
#end # if HAVE_SPEC_RAKE_SPECTASK
# EOF
|