[Add] LLUnionPaySDK 1.3.8
[CocoaPods.git] / Specs / d / c / 2 / Stash / 0.1.0 / Stash.podspec.json
blob23b649157687748173ebe13a6a9ff1e55ca24b2f
2   "name": "Stash",
3   "version": "0.1.0",
4   "summary": "A parallel object cache for Swift 2.0",
5   "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.",
6   "homepage": "https://github.com/DanielTomlinson/Stash",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Daniel Tomlinson": "Dan@Tomlinson.io"
13   },
14   "social_media_url": "http://twitter.com/DanToml",
15   "platforms": {
16     "ios": "8.0"
17   },
18   "source": {
19     "git": "https://github.com/DanielTomlinson/Stash.git",
20     "tag": "0.1.0"
21   },
22   "source_files": [
23     "Source",
24     "Stash/*.swift"
25   ]