10 lines
263 B
Ruby
10 lines
263 B
Ruby
# 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
|