blob: a25b3095a139be177a1fe0670a3aae8ff932b2fc [file] [log] [blame]
{
"name": "ActorKit",
"version": "0.7.0",
"summary": "A lightweight actor framework in Objective-C.",
"description": "Brings the actor model to Objective-C.\n\n* Actors\n* Actor Pools\n* Synchronous and asynchronous invocations\n* Futures\n* Promises\n* Message subscription and publication",
"homepage": "https://github.com/tarbrain/ActorKit",
"license": "MIT",
"authors": {
"Julian Krumow": "julian.krumow@tarbrain.com"
},
"platforms": {
"ios": "5.0",
"watchos": "2.0",
"osx": "10.7"
},
"requires_arc": true,
"source": {
"git": "https://github.com/tarbrain/ActorKit.git",
"tag": "0.7.0"
},
"default_subspecs": "Core",
"subspecs": [
{
"name": "Core",
"source_files": "Pod/Core"
},
{
"name": "Futures",
"source_files": "Pod/Futures",
"dependencies": {
"ActorKit/Core": [
]
}
},
{
"name": "Promises",
"platforms": {
"ios": "7.0"
},
"source_files": "Pod/Promises",
"dependencies": {
"ActorKit/Core": [
],
"PromiseKit/Promise": [
]
}
}
]
}