diff options
Diffstat (limited to 'lib/tasks/yardoc.rake')
-rw-r--r-- | lib/tasks/yardoc.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/yardoc.rake b/lib/tasks/yardoc.rake index aa6c5eeb0..eab0d8606 100644 --- a/lib/tasks/yardoc.rake +++ b/lib/tasks/yardoc.rake @@ -2,8 +2,8 @@ begin require 'yard' YARD::Rake::YardocTask.new do |t| - files = ['lib/**/*.rb', 'app/**/*.rb'] - files << Dir['vendor/plugins/**/*.rb'].reject {|f| f.match(/test/) } # Exclude test files + files = ['app/**/*.rb'] + files << Dir['lib/**/*.rb', 'plugins/**/*.rb'].reject {|f| f.match(/test/) } t.files = files static_files = ['doc/CHANGELOG', |