Add a Rakefile for the 'yard' documentation task

This commit is contained in:
Paul van Tilburg 2014-11-01 21:50:24 +01:00
parent a98c2a63dc
commit a7807a8da6
1 changed files with 10 additions and 0 deletions

10
Rakefile Normal file
View File

@ -0,0 +1,10 @@
# Rakefile with tasks for Stop… Camping Time!
require "yard"
YARD::Rake::YardocTask.new do |t|
t.files = ["stoptime.rb"]
t.options = ["--no-private",
"--files", "*.rdoc",
"--title", "Stop… Camping Time! documentation"]
end