From a76ef2a43eedb4b068174215fb27e52189600e10 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Mon, 11 Jul 2011 09:49:17 -0700 Subject: [PATCH] Updated yardoc static files --- lib/tasks/yardoc.rake | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/tasks/yardoc.rake b/lib/tasks/yardoc.rake index 41e1efa7..9495ee62 100644 --- a/lib/tasks/yardoc.rake +++ b/lib/tasks/yardoc.rake @@ -19,11 +19,12 @@ begin files << Dir['vendor/plugins/**/*.rb'].reject {|f| f.match(/test/) } # Exclude test files t.files = files - static_files = ['doc/CHANGELOG', - 'doc/COPYING', - 'doc/INSTALL', - 'doc/RUNNING_TESTS', - 'doc/UPGRADING'].join(',') + static_files = ['doc/CHANGELOG.rdoc', + 'doc/COPYING.rdoc', + 'doc/COPYRIGHT.rdoc', + 'doc/INSTALL.rdoc', + 'doc/RUNNING_TESTS.rdoc', + 'doc/UPGRADING.rdoc'].join(',') t.options += ['--output-dir', './doc/app', '--files', static_files] end