From ca7f4b43807727018ba0a94e2f78ba0c68a4868e Mon Sep 17 00:00:00 2001 From: Ross Kaffenberger Date: Sun, 29 Nov 2015 01:03:24 -0500 Subject: [PATCH] Remove Rakefile doc task --- Rakefile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Rakefile b/Rakefile index 4f20948..39289ed 100644 --- a/Rakefile +++ b/Rakefile @@ -11,16 +11,3 @@ RuboCop::RakeTask.new task test: [:spec, :rubocop] task default: [:spec, :rubocop] - -namespace :doc do - begin - require 'yard' - YARD::Rake::YardocTask.new do |task| - task.files = ['README.md', 'LICENSE.md', 'lib/**/*.rb'] - task.options = [ - '--markup', 'markdown', - ] - end - rescue LoadError - end -end