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