blob: 858b96e22ea7f41cbfd6439e8680f3a2c4fb2005 [file] [log] [blame]
{
"name": "RxFeedback",
"version": "2.0.0",
"summary": "Simplest architecture for RxSwift. State + feedback loops.",
"description": "* Straightforward\n * If it did happen -> Event\n * If it should happen -> Request\n * To fulfill Request -> Feedback loop\n* Declarative\n * System behavior is first declaratively specified and effects begin after subscribe is called => Compile time proof there are no \"unhandled states\"\n* Debugging is easier\n * A lot of logic is just normal pure function that can be debugged using Xcode debugger, or just printing the commands.\n\n* Can be applied on any level\n * [Entire system](https://kafka.apache.org/documentation/)\n * application (state is stored inside a database, CoreData, Firebase, Realm)\n * view controller (state is stored inside `system` operator)\n * inside feedback loop (another `system` operator inside feedback loop)\n* Works awesome with dependency injection\n* Testing\n * Reducer is a pure function, just call it and assert results\n * In case effects are being tested -> TestScheduler\n* Can model circular dependencies\n* Completely separates business logic from effects (Rx).\n * Business logic can be transpiled between platforms (ShiftJS, C++, J2ObjC)",
"homepage": "https://github.com/NoTests/RxFeedback.swift",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Krunoslav Zaher": "krunoslav.zaher@gmail.com"
},
"platforms": {
"ios": "8.0",
"osx": "10.10",
"watchos": "3.0",
"tvos": "9.0"
},
"source": {
"git": "https://github.com/NoTests/RxFeedback.swift.git",
"tag": "2.0.0"
},
"source_files": "Sources/**/*.swift",
"frameworks": "Foundation",
"dependencies": {
"RxSwift": [
"~> 4.4"
],
"RxCocoa": [
"~> 4.4"
]
}
}