[Add] ZJSDK 2.5.4.14
[CocoaPods.git] / Specs / 2 / 4 / a / Async / 0.1.0 / Async.podspec.json
blob278455b26aebbc861608d139540f38876318ba4a
2   "name": "Async",
3   "version": "0.1.0",
4   "summary": "Set of functions for working with asynchronous functions",
5   "description": "                    Asynchronous functions are defined by a set of blocks contained in an NSArray.\n                    When a block is finished, it calls success() or failure().\n\n                    Functions include:\n\n                    * series: run a set of blocks in sequential order\n                    * parallel: run a set of blocks in parallel\n                    * mapParallel: runs a block in parallel with every item in an array, collecting all the return values\n                    * mapSeries: runs a block in series with every item in an array, collecting all the return values\n                    * repeatUntilSuccess: repeat a block until it succeeds or maxAttempts is reached\n                    * waterfall: run a set of blocks in series, passing the return value of a block to the next block\n\n",
6   "homepage": "https://github.com/johnwana/Async",
7   "license": "MIT",
8   "authors": {
9     "John Wana": "john@wana.us"
10   },
11   "source": {
12     "git": "https://github.com/johnwana/Async.git",
13     "tag": "0.1.0"
14   },
15   "requires_arc": true,
16   "source_files": "Classes",
17   "ios": {
18     "exclude_files": "Classes/osx"
19   },
20   "osx": {
21     "exclude_files": "Classes/ios"
22   },
23   "public_header_files": "Classes/**/Async*.h"