[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 9 / e / 6 / SwiftRex / 0.4.0 / SwiftRex.podspec.json
bloba4917ef4b1d1fc9c376de92c773a89a821ab65e5
2   "name": "SwiftRex",
3   "version": "0.4.0",
4   "summary": "SwiftRex is a Redux implementation on top of RxSwift or ReactiveSwift",
5   "description": "SwiftRex is a framework that combines event-sourcing pattern and reactive programming (RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers can observe and react to, as well as dispatching events coming from the user interaction.\nThis pattern is also known as 'Unidirectional Dataflow' or 'Redux'.",
6   "homepage": "https://github.com/SwiftRex/SwiftRex",
7   "license": {
8     "type": "Apache 2.0",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Luiz Barbosa": "swiftrex@developercity.de"
13   },
14   "source": {
15     "git": "https://github.com/swiftrex/SwiftRex.git",
16     "tag": "v0.4.0"
17   },
18   "requires_arc": true,
19   "platforms": {
20     "ios": "8.0",
21     "osx": "10.10",
22     "watchos": "3.0",
23     "tvos": "9.0"
24   },
25   "swift_version": "5.0",
26   "frameworks": "Foundation",
27   "default_subspecs": "UsingRxSwift",
28   "subspecs": [
29     {
30       "name": "UsingRxSwift",
31       "dependencies": {
32         "RxSwift": [
34         ]
35       },
36       "source_files": "Sources/{Common,RxSwift}/**/*.{swift,h,m}"
37     },
38     {
39       "name": "UsingReactiveSwift",
40       "dependencies": {
41         "ReactiveSwift": [
43         ]
44       },
45       "source_files": "Sources/{Common,ReactiveSwift}/**/*.{swift,h,m}"
46     }
47   ]