├── .gitignore ├── CSProgress.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── CSProgress.xcscheme │ └── CSProgressPerformanceTests.xcscheme ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── CSProgress │ └── CSProgress.swift └── Tests ├── CSProgressPerformanceTests ├── CSProgressPerformanceTests.swift └── main.swift └── CSProgressTests ├── CSProgressTests.swift └── Foundation.Progress Tests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | .build 4 | .swiftpm 5 | 6 | -------------------------------------------------------------------------------- /CSProgress.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/CSProgress.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CSProgress.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/CSProgress.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CSProgress.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/CSProgress.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CSProgress.xcodeproj/xcshareddata/xcschemes/CSProgress.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/CSProgress.xcodeproj/xcshareddata/xcschemes/CSProgress.xcscheme -------------------------------------------------------------------------------- /CSProgress.xcodeproj/xcshareddata/xcschemes/CSProgressPerformanceTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/CSProgress.xcodeproj/xcshareddata/xcschemes/CSProgressPerformanceTests.xcscheme -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CSProgress/CSProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Sources/CSProgress/CSProgress.swift -------------------------------------------------------------------------------- /Tests/CSProgressPerformanceTests/CSProgressPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Tests/CSProgressPerformanceTests/CSProgressPerformanceTests.swift -------------------------------------------------------------------------------- /Tests/CSProgressPerformanceTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Tests/CSProgressPerformanceTests/main.swift -------------------------------------------------------------------------------- /Tests/CSProgressTests/CSProgressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Tests/CSProgressTests/CSProgressTests.swift -------------------------------------------------------------------------------- /Tests/CSProgressTests/Foundation.Progress Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlesJS/CSProgress/HEAD/Tests/CSProgressTests/Foundation.Progress Tests.swift --------------------------------------------------------------------------------