[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / f / 1 / 7 / Savior / 1.1.1 / Savior.podspec.json
blob232b25689c3037b5c881cf63e22a6ae0629ff2a1
2   "name": "Savior",
3   "version": "1.1.1",
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.1.1"
17   },
18   "platforms": {
19     "ios": "10.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": "10.0"
29       },
30       "source_files": "Savior/Classes/Core/*.{swift}"
31     },
32     {
33       "name": "Realm",
34       "platforms": {
35         "ios": "10.0"
36       },
37       "source_files": "Savior/Classes/Realm/*.{swift}",
38       "dependencies": {
39         "Savior/Core": [
41         ],
42         "RealmSwift": [
44         ]
45       }
46     }
47   ]