1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Fix rake yard does not work with Ruby >= 3.2 due to nested array issue (#39576).

Patch by Go MAEDA.


git-svn-id: https://svn.redmine.org/redmine/trunk@22456 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-11-18 04:18:59 +00:00
parent 635e31a952
commit 72dcb6a570

View File

@ -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',