private Method

RDoc.list_files_in_directory(dir, options)

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

Source Code

# File rdoc/rdoc.rb, line 202
def list_files_in_directory(dir, options)
  normalized_file_list(options, Dir.glob(File.join(dir, "*")), false, options.exclude)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.