[Add] DemoTestFramework 1.0.7
[CocoaPods.git] / Specs / 2 / 1 / 9 / SQLiteManager / 0.1.2 / SQLiteManager.podspec.json
blob11c3a247e8acf8060af1e37b307ea916cccd9fd4
2   "name": "SQLiteManager",
3   "version": "0.1.2",
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.",
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.2"
17   },
18   "social_media_url": "https://twitter.com/chamirafernando",
19   "platforms": {
20     "ios": "8.0"
21   },
22   "source_files": "SQLiteManager/Classes/**/*",
23   "libraries": "sqlite3",
24   "dependencies": {
25     "sqlite3": [
27     ]
28   }