list_files_in_directory(dir, options)
private
Return a list of the files to be processed in a directory. We know that
this directory doesn’t have a .document file, so we’re looking
for real files. However we may well contain subdirectories which must be
tested for .document files
Show source
def list_files_in_directory(dir, options)
normalized_file_list(options, Dir.glob(File.join(dir, "*")), false, options.exclude)
end