blob: 8c9001ee8286ab02858eb30e64d8085ead33ff95 [file] [log] [blame]
{
"name": "SwiftRex",
"version": "0.5.0",
"summary": "SwiftRex is a Redux implementation on top of RxSwift or ReactiveSwift",
"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'.",
"homepage": "https://github.com/SwiftRex/SwiftRex",
"license": {
"type": "Apache 2.0",
"file": "LICENSE"
},
"authors": {
"Luiz Barbosa": "swiftrex@developercity.de"
},
"source": {
"git": "https://github.com/swiftrex/SwiftRex.git",
"tag": "v0.5.0"
},
"requires_arc": true,
"platforms": {
"ios": "8.0",
"osx": "10.10",
"watchos": "3.0",
"tvos": "9.0"
},
"swift_version": "5.0",
"frameworks": "Foundation",
"default_subspecs": "UsingRxSwift",
"subspecs": [
{
"name": "UsingRxSwift",
"dependencies": {
"RxSwift": [
]
},
"source_files": "Sources/{Common,RxSwift}/**/*.{swift,h,m}"
},
{
"name": "UsingReactiveSwift",
"dependencies": {
"ReactiveSwift": [
]
},
"source_files": "Sources/{Common,ReactiveSwift}/**/*.{swift,h,m}"
}
]
}