[Add] APSDKMediationMintegral 0.0.19
[CocoaPods.git] / Specs / 3 / 7 / d / Promissum / 2.0.0 / Promissum.podspec.json
blob1090382b8eb1a0ef327a935175668f9aa6c52f1c
2   "name": "Promissum",
3   "version": "2.0.0",
4   "license": "MIT",
5   "summary": "A promises library written in Swift featuring combinators like map, flatMap, whenAll, whenAny.",
6   "description": "Promissum is a promise library written in Swift. It features some known functions from Functional Programming like, `map` and `flatMap`.\n\nIt has useful combinators for working with promises like; `whenAll` for doing something when multiple promises complete, and `whenAny` for doing something when a single one of a list of promises completes. As well as their binary counterparts: `whenBoth` and `whenEither`.\n\nPromissum really shines when used to combine asynchronous operations from different libraries. There are currently some basic extensions to UIKit, Alamofire and CoreDataKit, and contributions for extensions to other libraries are very welcome.",
7   "authors": {
8     "Tom Lokhorst": "tom@lokhorst.eu"
9   },
10   "social_media_url": "https://twitter.com/tomlokhorst",
11   "homepage": "https://github.com/tomlokhorst/Promissum",
12   "platforms": {
13     "ios": "9.0",
14     "osx": "10.11",
15     "tvos": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/tomlokhorst/Promissum.git",
19     "tag": "2.0.0"
20   },
21   "requires_arc": true,
22   "default_subspecs": "Core",
23   "pushed_with_swift_version": "4.0",
24   "subspecs": [
25     {
26       "name": "Core",
27       "source_files": "Sources/Promissum"
28     },
29     {
30       "name": "Alamofire",
31       "source_files": "extensions/PromissumExtensions/Alamofire+Promise.swift",
32       "dependencies": {
33         "Promissum/Core": [
35         ],
36         "Alamofire": [
37           "~> 4.0"
38         ]
39       }
40     },
41     {
42       "name": "CoreDataKit",
43       "platforms": {
44         "ios": "9.0"
45       },
46       "source_files": "extensions/PromissumExtensions/CoreDataKit+Promise.swift",
47       "dependencies": {
48         "Promissum/Core": [
50         ],
51         "CoreDataKit": [
52           "~> 0.12"
53         ]
54       }
55     },
56     {
57       "name": "UIKit",
58       "platforms": {
59         "ios": "9.0"
60       },
61       "source_files": "extensions/PromissumExtensions/UIKit+Promise.swift",
62       "dependencies": {
63         "Promissum/Core": [
65         ]
66       }
67     }
68   ]