forked from ianwhite/nested_has_many_through
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Rakefile
77 lines (65 loc) · 2.59 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
68
69
70
71
72
73
74
75
76
77
# use pluginized rpsec if it exists
rspec_base = File.expand_path(File.dirname(__FILE__) + '/../rspec/lib')
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base) and !$LOAD_PATH.include?(rspec_base)
require 'spec/rake/spectask'
require 'spec/rake/verify_rcov'
require 'rake/rdoctask'
plugin_name = 'nested_has_many_through'
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 = 97.1
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']
t.rdoc_files.include('README.rdoc', 'SPECDOC', 'MIT-LICENSE')
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
task :cruise do
# run the garlic task, capture the output, if succesful make the docs and copy them to ardes
sh "garlic all"
`garlic run > .garlic/report.txt`
`scp -i ~/.ssh/ardes .garlic/report.txt [email protected]:~/subdomains/plugins/httpdocs/doc/#{plugin_name}_garlic_report.txt`
`cd .garlic/*/vendor/plugins/#{plugin_name}; rake doc:all; scp -i ~/.ssh/ardes -r doc [email protected]:~/subdomains/plugins/httpdocs/doc/#{plugin_name}`
puts "The build is GOOD"
end