[Add] ZJSDK 2.5.5.6
[CocoaPods.git] / Specs / 2 / f / a / NMLRUCache / 0.1.0 / NMLRUCache.podspec.json
blobe5fff1394a1e3bc0a738165d2c0f5caa82dd16cc
2   "name": "NMLRUCache",
3   "version": "0.1.0",
4   "summary": "In Memory LRU Cache for iOS.",
5   "description": "\n# NMLRUCache [![Build Status](https://travis-ci.org/Nirma/NMLRUCache.svg?branch=master)](https://travis-ci.org/Nirma/NMLRUCache)\n\nIn Memory LRU Cache Implementation for iOS and OS X.\n\n## Requirements\n- iOS 5.0+\n- ARC\n\n## Features\n- Threadsafe and optimized for use with Grand Central Dispatch.\n- Completely In Memory Cache that deletes least recently used elements.\n\n## Installation\n- Copy the folder `NMLRUCache/` containing the files NMLRUCache.h/m and NMLRUImageCache.h/m into your project.\n\n## Usage\n\n### Initialization:\n### Creating an LRU Image Cache of 10 elements:\n```\n    NMLRUImageCache *imageCache = [[NMLRUImageCache alloc] initWithSize: 10];\n```\n\n### Storing an image in the Cache:\n\n```\n    [imageCache setImage:image forKey:@\"imageKey\"];\n```\n\n#### Fetching Image from Cache\n\n```\n    [imageCache imageForKey:@\"imageKey\"];\n```\n",
6   "homepage": "https://github.com/nirma/NMLRUCache",
7   "license": "MIT",
8   "authors": {
9     "Nicholas Maccharoli": "nmaccharoli@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/nirma/NMLRUCache.git",
13     "tag": "0.1.0"
14   },
15   "platforms": {
16     "ios": "5.0"
17   },
18   "requires_arc": true,
19   "source_files": "NMLRUCache",
20   "resource_bundles": {
21     "NMLRUCache": [
22       "Pod/Assets/*.png"
23     ]
24   },
25   "frameworks": "UIKit",
26   "deprecated": true