├── .github └── workflows │ ├── linux.yml │ └── macos.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md └── Sources ├── AssetCacheLibrary ├── Extensions.swift ├── LocalAssetCache.swift ├── LocalCacheFinder.swift ├── LocalCacheRegistration.swift ├── RemoteAssetCache.swift └── RemoteCacheLocator.swift └── AssetCacheTool ├── AssetCacheToolCommand.swift ├── CacheRegistrationConfigurationCommand.swift ├── DownloadRemoteCacheCommand.swift ├── Extensions.swift ├── FindLocalCachesCommand.swift ├── FindRemoteCachesCommand.swift ├── ListLocalAssetsCommand.swift ├── PrintLocalCachePathCommand.swift ├── ReassembleLocalCacheCommand.swift └── main.swift /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.3 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- 1 | --indent 4 2 | --disable trailingCommas 3 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/Extensions.swift -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/LocalAssetCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/LocalAssetCache.swift -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/LocalCacheFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/LocalCacheFinder.swift -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/LocalCacheRegistration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/LocalCacheRegistration.swift -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/RemoteAssetCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/RemoteAssetCache.swift -------------------------------------------------------------------------------- /Sources/AssetCacheLibrary/RemoteCacheLocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheLibrary/RemoteCacheLocator.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/AssetCacheToolCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/AssetCacheToolCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/CacheRegistrationConfigurationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/CacheRegistrationConfigurationCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/DownloadRemoteCacheCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/DownloadRemoteCacheCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/Extensions.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/FindLocalCachesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/FindLocalCachesCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/FindRemoteCachesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/FindRemoteCachesCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/ListLocalAssetsCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/ListLocalAssetsCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/PrintLocalCachePathCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/PrintLocalCachePathCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/ReassembleLocalCacheCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/ReassembleLocalCacheCommand.swift -------------------------------------------------------------------------------- /Sources/AssetCacheTool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gay-pizza/asset-cache-tool/HEAD/Sources/AssetCacheTool/main.swift --------------------------------------------------------------------------------