in lib/licensee/projects/fs_project.rb [72:80]
def search_enumerator
root = Pathname.new(@root)
Enumerator.new do |yielder|
dir_path.relative_path_from(root).ascend do |relative|
yielder.yield root.join(relative)
end
end
end