class Bake::Registry::FileLoader

def scope_for(path)

def scope_for(path)
	if file_path = @paths[path]
		if File.exist?(file_path)
			return Scope.load(file_path, path)
		end
	end
end