2 "name": "LLAKeyValueStore",
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",
8 "Lutz Lameyer": "radebruch@gmail.com"
11 "git": "https://gitlab.com/radebruch/llakeyvaluestore.git",
14 "homepage": "https://gitlab.com/radebruch/llakeyvaluestore",
18 "swift_version": "4.2",
20 "source_files": "Pod/Classes/**/*.swift",
21 "frameworks": "SystemConfiguration"