[Add] NoctuaSDK 0.6.0
[CocoaPods.git] / Specs / 4 / f / d / ValidModel / 0.1.0 / ValidModel.podspec.json
blobde5f1e80e98ffd175cf8cc3fc337968d22cda4fc
2   "name": "ValidModel",
3   "version": "0.1.0",
4   "swift_version": "4.1",
5   "platforms": {
6     "ios": "8.0"
7   },
8   "summary": "ValidModel empowers model validation and autogeneration.",
9   "description": "ValidModel enhances application models and makes data safer to handle and easier to reason about.\n\nIn many cases projects are stuffed with 'mocks'. They provide good value\nhowever it comes with a price of extra development and maintanence that mock loading system\nand mock files require (source code that loads mock data, mock data files that are supposed to match model's format).\n\nIn a nutshell ValidModel proposes a different workflow when working with application models and it boils down to an ideas of Validation.\nAssume having a model with clearly defined min-max range values for the properties of the model.\nBy just knowing min-max limits information it is easy to:\n  - confirm that given model instance contains correct values that application knows how to deal with.\n  - generate new instance of this model for easy testing, N times (whether you work on UI edge case or API is not available, it is just like an object from mock data, but autogenerated, N times).",
10   "homepage": "https://github.com/ReImpl/ValidModel",
11   "license": {
12     "type": "MIT",
13     "file": "LICENSE"
14   },
15   "authors": {
16     "kernel": "kernel@reimplement.mobi"
17   },
18   "source": {
19     "git": "https://github.com/ReImpl/ValidModel.git",
20     "tag": "0.1.0"
21   },
22   "subspecs": [
23     {
24       "name": "Base",
25       "source_files": "ValidModel/Classes/Base/**/*.{swift}"
26     },
27     {
28       "name": "Extended",
29       "dependencies": {
30         "ValidModel/Base": [
32         ],
33         "Fakery": [
35         ]
36       },
37       "source_files": "ValidModel/Classes/Extended/**/*.{swift}"
38     }
39   ]