[Add] DemoTestFramework 1.0.7
[CocoaPods.git] / Specs / 2 / 1 / 9 / SQLiteManager / 0.1.12 / SQLiteManager.podspec.json
blob6be13d450cbc654df2962eee374c71f376649624
2   "name": "SQLiteManager",
3   "version": "0.1.12",
4   "summary": "Simple SQLite Manager class to do operations such as open database, close database, insert, update, delete and select",
5   "description": "Idea is to have a simple [Swift](https://developer.apple.com/swift/) interface to run basic [SQL](https://www.sqlite.org/lang.html) statements such as CREATE TABLE, SELECT, INSERT, UPDATE and DELETE.\nThere are many iOS libraries that are well capable of doing complicated SQLite stuff but almost all of those libraries have more than what we need for small projects.\nThus, the idea is to get rid of all the boilerplate code and keep things very simple. You write your own SQL.\n\nHandling objects, writing business logic is all up to the developers.\n\nsuper lightweight",
6   "homepage": "https://github.com/chamira/",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Chamira Fernando": "chamira.fdo@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/chamira/SQLiteManager.git",
16     "tag": "0.1.12"
17   },
18   "social_media_url": "https://twitter.com/chamirafernando",
19   "platforms": {
20     "ios": "8.0",
21     "tvos": "9.0"
22   },
23   "source_files": "SQLiteManager/Classes/**/*",
24   "libraries": "sqlite3",
25   "dependencies": {
26     "sqlite3": [
28     ]
29   }