blob: a0f56d036c357777c914fef3129d274a6e4fbc7f [file] [log] [blame]
{
"name": "Stash",
"version": "0.2.0",
"summary": "A parallel object cache for Swift 2.0",
"description": "Stash is a key/value store for temporarily persisting objects, such as network responses (images etc), or expensive to reproduce values.\n`Stash` is a simple object that wraps `Memory` (a fast in memory store) and `Disk` (a slower, file system backed store).\n`Memory` will automatically clear itself when your app receives a memory warning.\n`Disk` will persist items until you manually remove items, or automatically using limits.\nThe caches will accept any object that conforms to `NSCoding`, although I'm open to considering a different encoding.\nThe caches primary API's are synchronous, although there are asynchronous wrappers around most of them.",
"homepage": "https://github.com/DanielTomlinson/Stash",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Daniel Tomlinson": "Dan@Tomlinson.io"
},
"social_media_url": "http://twitter.com/DanToml",
"platforms": {
"ios": "8.0",
"osx": "10.9",
"watchos": "2.0",
"tvos": "9.0"
},
"source": {
"git": "https://github.com/DanielTomlinson/Stash.git",
"tag": "0.2.0"
},
"source_files": [
"Source",
"Stash/*.swift"
]
}