blob: e2e281c682c6c70d21f49c5c815caa5b7c8d7451 [file] [log] [blame]
{
"name": "SwiftyPromise",
"version": "1.0.0",
"summary": "A simple promise framework for Swift.",
"description": "This small library implements thread safe promises for Swift. It allows to create promises and fulfill or reject them asynchronously. Promises can be chained using the `then` method. Furthermore it has support for cancelling a promise chain.",
"homepage": "https://github.com/sroebert/SwiftyPromise",
"license": {
"type": "MIT"
},
"authors": {
"Steven Roebert": "steven@roebert.nl"
},
"source": {
"git": "https://github.com/sroebert/SwiftyPromise.git",
"tag": "v1.0.0"
},
"requires_arc": true,
"source_files": "Sources/**/*.{h,swift}",
"frameworks": "Foundation",
"platforms": {
"ios": "8.0",
"osx": "10.9",
"watchos": "2.0",
"tvos": "9.0"
}
}