class Bake::Loader

def scope_for(path)

@parameter path [Array(String)] A relative path.
Load the {Scope} for the specified relative path within this loader, if it exists.
def scope_for(path)
	*directory, file = *path
	
	file_path = File.join(@root, directory, "#{file}.rb")
	
	if File.exist?(file_path)
		return Scope.load(file_path, path)
	end
end