[Add] DocumentReaderMRZStage 7.5.10959
[CocoaPods.git] / Specs / b / c / 1 / MemoryCache / 1.1.0 / MemoryCache.podspec.json
blob770a80830ad0df69e8d2dc28ef6ec9deae473c7c
2   "name": "MemoryCache",
3   "version": "1.1.0",
4   "summary": "MemoryCache is a LRU memory cache in swift.",
5   "description": "MemoryCache is a memory cache class in swift.\n\n- The MemoryCache class incorporates **LRU** policies, which ensure that a cache doesn’t use too much of the system’s memory. If memory is needed by other applications, it removes some items from the cache, minimizing its memory footprint.\n- You can add, remove, and query items with **expiration** in the cache from different threads without having to lock the cache yourself. ( **thread-safe** )\n- Unlike the NSCache class, the cache guarantees a type by its key. ( **type-safe** )",
6   "homepage": "https://github.com/yysskk/MemoryCache",
7   "license": {
8     "type": "MIT",
9     "file": "./LICENSE"
10   },
11   "authors": {
12     "yysskk": "yusuke.0213@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/yysskk/MemoryCache.git",
16     "tag": "1.1.0"
17   },
18   "social_media_url": "https://twitter.com/_yysskk",
19   "platforms": {
20     "ios": "8.0"
21   },
22   "swift_version": "4.2",
23   "source_files": "Sources/**/*.swift"