[Add] GizoSDK 2.0.2-alpha.02
[CocoaPods.git] / Specs / f / 1 / 7 / Savior / 1.0.0 / Savior.podspec.json
blobe69b2250571b87f5a3ca03bfc29c0658628387dd
2   "name": "Savior",
3   "version": "1.0.0",
4   "summary": "Savior is a lightweight Swift ORM that makes persistence delightful.",
5   "description": "Savior is a client-side ORM written in Swift for make storing data delightful. Built to be data-agnostic, Savior lets you easily add persistence capabilities to your iOS app. The best part is it doesn't require you to change or subclass your existing data models. Just conform your models to the 'Storable' protocol to get started. Currently Realm is the default provider, but Pull Requests are welcome to add more!",
6   "homepage": "https://github.com/erusso1/Savior",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "erusso1": "ephraim.s.russo@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/erusso1/Savior.git",
16     "tag": "1.0.0"
17   },
18   "platforms": {
19     "ios": "11.0"
20   },
21   "default_subspecs": "Realm",
22   "source_files": "Savior/Classes/**/*",
23   "swift_version": "4.2",
24   "subspecs": [
25     {
26       "name": "Core",
27       "platforms": {
28         "ios": "11.0"
29       },
30       "source_files": "Savior/Classes/Core/*.{swift}"
31     },
32     {
33       "name": "Realm",
34       "platforms": {
35         "ios": "11.0"
36       },
37       "source_files": "Savior/Classes/Realm/*.{swift}",
38       "dependencies": {
39         "Savior/Core": [
41         ],
42         "RealmSwift": [
44         ]
45       }
46     }
47   ]