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",
9 "John Wana": "john@wana.us"
12 "git": "https://github.com/johnwana/Async.git",
16 "source_files": "Classes",
18 "exclude_files": "Classes/osx"
21 "exclude_files": "Classes/ios"
23 "public_header_files": "Classes/**/Async*.h"