2014-01-19 14:34:01 +00:00
|
|
|
COOKBOOKS = FileList[File.join("site-cookbooks", "*")]
|
|
|
|
|
|
|
|
task :test do
|
|
|
|
COOKBOOKS.each do |cookbook|
|
|
|
|
#sh "knife cookbook test #{File.basename(cookbook)}"
|
|
|
|
sh "foodcritic #{cookbook}"
|
|
|
|
end
|
|
|
|
sh "rspec spec"
|
|
|
|
end
|
2014-01-27 10:14:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
task :report do
|
|
|
|
Dir.chdir("report") do
|
|
|
|
sh "latexmk -pdf -pvc report.tex"
|
|
|
|
end
|
|
|
|
end
|