class Bake::Loader

def recipe_for(path)

def recipe_for(path)
	if book = lookup(path)
		return book.lookup(path.last)
	else
		*path, name = *path
		
		if book = lookup(path)
			return book.lookup(name)
		end
	end
end