├── .gitignore ├── .gitmodules ├── .swift-version ├── .travis.yml ├── AwaitKit.podspec ├── AwaitKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── AwaitKit.xcscheme ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── AwaitKit │ ├── AwaitKit.swift │ ├── AwaitKitExtension.swift │ ├── DispatchQueue+Async.swift │ ├── DispatchQueue+Await.swift │ └── Info.plist ├── Tests ├── AwaitKitTests │ ├── AwaitKitAsyncTests.swift │ ├── AwaitKitAwaitTests.swift │ ├── AwaitKitTests.swift │ └── Info.plist └── LinuxMain.swift └── codecov.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /AwaitKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/AwaitKit.podspec -------------------------------------------------------------------------------- /AwaitKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/AwaitKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AwaitKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/AwaitKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AwaitKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/AwaitKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AwaitKit.xcodeproj/xcshareddata/xcschemes/AwaitKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/AwaitKit.xcodeproj/xcshareddata/xcschemes/AwaitKit.xcscheme -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "mxcl/PromiseKit" ~> 6.10 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "mxcl/PromiseKit" "6.10.0" 2 | -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AwaitKit/AwaitKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Sources/AwaitKit/AwaitKit.swift -------------------------------------------------------------------------------- /Sources/AwaitKit/AwaitKitExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Sources/AwaitKit/AwaitKitExtension.swift -------------------------------------------------------------------------------- /Sources/AwaitKit/DispatchQueue+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Sources/AwaitKit/DispatchQueue+Async.swift -------------------------------------------------------------------------------- /Sources/AwaitKit/DispatchQueue+Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Sources/AwaitKit/DispatchQueue+Await.swift -------------------------------------------------------------------------------- /Sources/AwaitKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Sources/AwaitKit/Info.plist -------------------------------------------------------------------------------- /Tests/AwaitKitTests/AwaitKitAsyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Tests/AwaitKitTests/AwaitKitAsyncTests.swift -------------------------------------------------------------------------------- /Tests/AwaitKitTests/AwaitKitAwaitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Tests/AwaitKitTests/AwaitKitAwaitTests.swift -------------------------------------------------------------------------------- /Tests/AwaitKitTests/AwaitKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Tests/AwaitKitTests/AwaitKitTests.swift -------------------------------------------------------------------------------- /Tests/AwaitKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/Tests/AwaitKitTests/Info.plist -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannickl/AwaitKit/HEAD/codecov.yml --------------------------------------------------------------------------------