summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/tasks/yardoc.rake9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/tasks/yardoc.rake b/lib/tasks/yardoc.rake
index 88cf9b85e..aa6c5eeb0 100644
--- a/lib/tasks/yardoc.rake
+++ b/lib/tasks/yardoc.rake
@@ -5,7 +5,14 @@ begin
files = ['lib/**/*.rb', 'app/**/*.rb']
files << Dir['vendor/plugins/**/*.rb'].reject {|f| f.match(/test/) } # Exclude test files
t.files = files
- t.options += ['--output-dir', './doc/app']
+
+ static_files = ['doc/CHANGELOG',
+ 'doc/COPYING',
+ 'doc/INSTALL',
+ 'doc/RUNNING_TESTS',
+ 'doc/UPGRADING'].join(',')
+
+ t.options += ['--output-dir', './doc/app', '--files', static_files]
end
rescue LoadError