[Add] FaceSDKNightly 6.4.2314
[CocoaPods.git] / Specs / b / d / 3 / LLAKeyValueStore / 1.0.0 / LLAKeyValueStore.podspec.json
blob3e39bddc206ca399452d2314ee09c4351a8710e0
2   "name": "LLAKeyValueStore",
3   "version": "1.0.0",
4   "summary": "LLAKeyValueStore provides an easy and optionally secure way to persist data locally on your iOS device",
5   "description": "LLAKeyValueStore is a simple tool for storing and retrieveing data from the UserDefaults and / or from the keychain. It provides a simple, readable, typesafe, swifty syntax and makes the everyday task of persisting simple information easy and delightful.\n\nlet score: Int = retrievePlayerScore()\n  // persist the score\nKeyValueStore.default[\"score\"].int = score\n  // persist a password (saved in the Keychain)\nKeyValueStore.secure[\"password\"].string = \"<<secret>>\"\n  [...]\n  // retrieve the score later\nlet retrievedScore = KeyValueStore.default[\"score\"].int\n  // retrieve the password later\nlet retrievedPassword = KeyValueStore.secure[\"password\"].string",
6   "license": "MIT",
7   "authors": {
8     "Lutz Lameyer": "radebruch@gmail.com"
9   },
10   "source": {
11     "git": "https://gitlab.com/radebruch/llakeyvaluestore.git",
12     "tag": "1.0.0"
13   },
14   "homepage": "https://gitlab.com/radebruch/llakeyvaluestore",
15   "platforms": {
16     "ios": "10.0"
17   },
18   "swift_version": "4.2",
19   "requires_arc": true,
20   "source_files": "Pod/Classes/**/*.swift",
21   "frameworks": "SystemConfiguration"