[Add] MealziOSSDKStaging 5.3.0
[CocoaPods.git] / Specs / 7 / b / e / PinkyPromise / 0.2.0 / PinkyPromise.podspec.json
blob6730c03d1f1f4b647a4e8f188a597343eb696742
2   "name": "PinkyPromise",
3   "version": "0.2.0",
4   "summary": "A tiny Promises library.",
5   "description": "PinkyPromise is a lightweight tool for coordinating asynchronous code.\n\nIt consists 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.9"
18   },
19   "source": {
20     "git": "https://github.com/willowtreeapps/PinkyPromise.git",
21     "tag": "0.2.0"
22   },
23   "source_files": [
24     "Sources",
25     "Sources/**/*.{swift}"
26   ]