[Add] BideaseConnect 1.0.79
[CocoaPods.git] / Specs / 7 / b / e / PinkyPromise / 0.6.1 / PinkyPromise.podspec.json
blob02c9802271a4f9ea16f74d5df45d192df807e583
2   "name": "PinkyPromise",
3   "version": "0.6.1",
4   "summary": "A tiny Promises library.",
5   "description": "PinkyPromise is a lightweight tool for coordinating asynchronous code.\n\nIt consists mainly of a Promise type, which represents a task,\nand a Result type, which represents success or failure.\nThese are immutable values that can be transformed in functional style.\n\nResult encodes the return-or-throw pattern common in synchronous code\nsuch that asynchronous completion blocks can use that pattern,\nwith a much tighter contract than (AnyObject?, ErrorType?) -> Void.\n\nPromise separates the events of creating an asynchronous operation with\narguments, and starting it with a completion block. Since it is a value,\nyou can add more steps by making composite Promises.\n\nPinkyPromise is worth using if you don't want a complex framework\nor if you're just getting started with functional patterns.\nA suitable step up from PinkyPromise is RxSwift's Observables.",
6   "homepage": "https://github.com/willowtreeapps/PinkyPromise",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Kevin Conner": "connerk@gmail.com"
13   },
14   "social_media_url": "https://twitter.com/connerk",
15   "platforms": {
16     "ios": "8.0",
17     "osx": "10.10",
18     "tvos": "9.0"
19   },
20   "source": {
21     "git": "https://github.com/willowtreeapps/PinkyPromise.git",
22     "tag": "0.6.1"
23   },
24   "source_files": [
25     "Sources",
26     "Sources/**/*.{swift}"
27   ],
28   "swift_version": "4.2"