From 04978a336380c8e44ca536450323eabb5d869542 Mon Sep 17 00:00:00 2001 From: Bob Aman Date: Tue, 22 Nov 2011 13:54:39 +0300 Subject: [PATCH] Moving static files to extra section so they don't get intrepreted as Ruby code by Yard. --- tasks/yard.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/yard.rake b/tasks/yard.rake index 2375cb2c9..e03a9b5c8 100644 --- a/tasks/yard.rake +++ b/tasks/yard.rake @@ -10,7 +10,7 @@ begin yardoc.name = 'yard' yardoc.options = ['--verbose'] yardoc.files = [ - 'lib/**/*.rb', 'ext/**/*.c', 'README.md', 'CHANGELOG', 'LICENSE' + 'lib/**/*.rb', 'ext/**/*.c', '-', 'README.md', 'CHANGELOG', 'LICENSE' ] end end