Merge pull request #390 from ruby/fix-388-again

Added Rake namespace explicitly
This commit is contained in:
Hiroshi SHIBATA 2021-07-09 10:40:35 +09:00 committed by GitHub
commit 73d4099cc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ argv = ARGV.select do |argument|
when /^-/ then
argument
when /\*/ then
FileList[argument].to_a.each do |file|
Rake::FileList[argument].to_a.each do |file|
require File.expand_path file
end