module Bootsnap::LoadPathCache::PathScanner
def call(path)
def call(path) path = File.expand_path(path.to_s).freeze return [[], []] unless File.directory?(path) # If the bundle path is a descendent of this path, we do additional # checks to prevent recursing into the bundle path as we recurse # through this path. We don't want to scan the bundle path because # anything useful in it will be present on other load path items. # # This can happen if, for example, the user adds '.' to the load path, # and the bundle path is '.bundle'. contains_bundle_path = BUNDLE_PATH.start_with?(path) dirs = [] requirables = [] walk(path, nil) do |relative_path, absolute_path, is_directory| if is_directory dirs << relative_path !contains_bundle_path || !absolute_path.start_with?(BUNDLE_PATH) elsif relative_path.end_with?(*REQUIRABLE_EXTENSIONS) requirables << relative_path end end [requirables, dirs] end