[Add] PlasoLogger 1.0.2
[CocoaPods.git] / Specs / 2 / 6 / 8 / SwiftMVVMPattern / 0.9.1 / SwiftMVVMPattern.podspec.json
bloba5627b87a4c6f3bdc28e95107e3ec51d2d686736
2   "name": "SwiftMVVMPattern",
3   "version": "0.9.1",
4   "summary": "A small framework to adopt MVVM as Design Pattern.",
5   "description": "SwiftMVVMPattern allows you to clearify your objects responsability using simple protocol adoption.\nThe main goal is to declare your View Model class and adopt the ViewModel protocol.\nYour ViewController then will adopt one between ViewModelHolder or ViewModelObserver.\nDoing this you will move all your unnecessary code from ViewController to the ViewModel\nand your ViewController will require just to update the views and request actions to its\nViewModel.",
6   "homepage": "http://github.com/falcon283/SwiftMVVMPattern",
7   "license": "MIT",
8   "authors": {
9     "Gabriele Trabucco": "gabrynet83@gmail.com"
10   },
11   "platforms": {
12     "ios": "9.0",
13     "osx": "10.10",
14     "watchos": "2.0",
15     "tvos": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/falcon283/SwiftMVVMPattern.git",
19     "tag": "0.9.1"
20   },
21   "default_subspecs": "Base",
22   "requires_arc": true,
23   "pushed_with_swift_version": "3.0",
24   "subspecs": [
25     {
26       "name": "Base",
27       "source_files": [
28         "MVVMKit/Classes/ViewModel/*.{h,m,swift}",
29         "MVVMKit/Classes/View/*.{h,m,swift}"
30       ]
31     },
32     {
33       "name": "Context",
34       "source_files": "MVVMKit/Classes/Context/*.{h,m,swift}",
35       "dependencies": {
36         "SwiftMVVMPattern/Base": [
37           "0.9.1"
38         ]
39       }
40     },
41     {
42       "name": "Presenter",
43       "source_files": "MVVMKit/Classes/Presenter/*.{h,m,swift}",
44       "dependencies": {
45         "SwiftMVVMPattern/Base": [
46           "0.9.1"
47         ]
48       }
49     }
50   ]