[Add] MealziOSSDKStaging 5.3.0
[CocoaPods.git] / Specs / 7 / b / e / PinkyPromise / 0.7.1 / PinkyPromise.podspec.json
blob1fb42a0a1401395823ffa57dc673096943101757
2   "name": "PinkyPromise",
3   "version": "0.7.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.7.1"
23   },
24   "source_files": [
25     "Sources",
26     "Sources/**/*.{swift}"
27   ],
28   "swift_versions": "5.0",
29   "swift_version": "5.0"