[Add] HyphenateChat_test1 1.0.1
[CocoaPods.git] / Specs / d / c / 2 / Stash / 0.4.0 / Stash.podspec.json
blobf60a7852e4835c0bc90fe75f112a062de478a3e3
2   "name": "Stash",
3   "version": "0.4.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     "osx": "10.9",
18     "watchos": "2.0",
19     "tvos": "9.0"
20   },
21   "source": {
22     "git": "https://github.com/DanielTomlinson/Stash.git",
23     "tag": "0.4.0"
24   },
25   "source_files": [
26     "Source",
27     "Stash/*.swift"
28   ]