This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathRakefile
67 lines (57 loc) · 2.01 KB
/
Rakefile
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
60
61
62
63
64
65
66
67
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'spec/rake/spectask'
require 'spec/rake/verify_rcov'
plugin_name = 'acts_as_eav_model'
desc 'Default: run specs.'
task :default => :spec
desc "Run the specs for #{plugin_name}"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = ["--colour"]
end
namespace :spec do
desc "Generate RCov report for #{plugin_name}"
Spec::Rake::SpecTask.new(:rcov) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.rcov = true
t.rcov_dir = 'doc/coverage'
t.rcov_opts = ['--text-report', '--exclude', "spec/,rcov.rb,#{File.expand_path(File.join(File.dirname(__FILE__),'../../..'))}"]
end
namespace :rcov do
desc "Verify RCov threshold for #{plugin_name}"
RCov::VerifyTask.new(:verify => "spec:rcov") do |t|
t.threshold = 100.0
t.index_html = File.join(File.dirname(__FILE__), 'doc/coverage/index.html')
end
end
desc "Generate specdoc for #{plugin_name}"
Spec::Rake::SpecTask.new(:doc) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = ["--format", "specdoc:SPECDOC"]
end
namespace :doc do
desc "Generate html specdoc for #{plugin_name}"
Spec::Rake::SpecTask.new(:html => :rdoc) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = ["--format", "html:doc/rspec_report.html", "--diff"]
end
end
end
task :rdoc => :doc
task "SPECDOC" => "spec:doc"
desc "Generate rdoc for #{plugin_name}"
Rake::RDocTask.new(:doc) do |t|
t.rdoc_dir = 'doc'
t.main = 'README.rdoc'
t.title = "#{plugin_name}"
t.template = ENV['RDOC_TEMPLATE']
t.options = ['--line-numbers', '--inline-source', '--all']
t.rdoc_files.include('README.rdoc', 'SPECDOC', 'MIT-LICENSE', 'CHANGELOG')
t.rdoc_files.include('lib/**/*.rb')
end
namespace :doc do
desc "Generate all documentation (rdoc, specdoc, specdoc html and rcov) for #{plugin_name}"
task :all => ["spec:doc:html", "spec:doc", "spec:rcov", "doc"]
end