File: faq.rake

package info (click to toggle)
ruby-sqlite3 1.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 420 kB
  • sloc: ruby: 3,732; ansic: 1,132; makefile: 10
file content (9 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
# Generate FAQ
desc "Generate the FAQ document"
task :faq => ['faq/faq.html']

file 'faq/faq.html' => ['faq/faq.rb', 'faq/faq.yml'] do
  cd 'faq' do
    ruby "faq.rb > faq.html"
  end
end