Files
Jot/Carthage/Checkouts/PromiseKit/Extensions/Foundation
James Griffin be7b6b5881 Add PromiseKit dependency
- Added PromiseKit dependency
2018-11-15 22:12:39 -04:00
..
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00
2018-11-15 22:12:39 -04:00

PromiseKit Foundation Extensions Build Status

This project adds promises to the Swift Foundation framework.

We support iOS, tvOS, watchOS, macOS and Linux, Swift 3.0, 3.1, 3.2, 4.0 and 4.1.

CococaPods

pod "PromiseKit/Foundation", "~> 6.0"

The extensions are built into PromiseKit.framework thus nothing else is needed.

Carthage

github "PromiseKit/Foundation" ~> 3.0

The extensions are built into their own framework:

// swift
import PromiseKit
import PMKFoundation
// objc
@import PromiseKit;
@import PMKFoundation;

SwiftPM

let package = Package(
    dependencies: [
        .Package(url: "https://github.com/PromiseKit/Foundation.git", majorVersion: 3)
    ]
)