blob: e5be5cbe2f93fff7500f7b3decfce65f2732b9c2 [file] [log] [blame]
{
"name": "Async",
"version": "0.2.0",
"summary": "Set of functions for working with asynchronous functions",
"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 * `eachSeries`: runs a block in series with every item in an array\n * `eachParallel`: runs a block in parallel with every item in an array\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",
"homepage": "https://github.com/johnwana/Async",
"license": "MIT",
"authors": {
"John Wana": "john@wana.us"
},
"source": {
"git": "https://github.com/johnwana/Async.git",
"tag": "0.2.0"
},
"requires_arc": true,
"source_files": "Classes",
"ios": {
"exclude_files": "Classes/osx"
},
"osx": {
"exclude_files": "Classes/ios"
},
"public_header_files": "Classes/**/Async*.h"
}