From 7b8472f6c7ad462b92c36d2e9d421d59069a4b75 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 4 Aug 2013 16:45:59 -0400 Subject: [PATCH] add "yard" task --- Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Rakefile b/Rakefile index 2995527..33ae0a8 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,9 @@ require "bundler/gem_tasks" +require "rake/clean" +require "yard" + +CLEAN.include "doc" + +YARD::Rake::YardocTask.new do |yard| + yard.files = ['lib/**/*.rb'] +end