blob: 29babbd33240beb519a99b819e257ac66f65e222 [file] [log] [blame]
{
"name": "Redux.swift",
"module_name": "Redux",
"version": "4.1.0",
"summary": "An implementation of a predictable state container in Swift.",
"description": "Redux.swift is an implementation of a predictable state container, written in Swift. It aims to enforce separation of concerns and a unidirectional data flow by keeping your entire app state in a single data structure that cannot be mutated directly, instead relying on an action dispatch mechanism to describe changes.",
"homepage": "https://github.com/fellipecaetano/Redux.swift",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Fellipe Caetano": "fellipe.caetano4@gmail.com"
},
"source": {
"git": "https://github.com/fellipecaetano/Redux.swift.git",
"tag": "4.1.0"
},
"platforms": {
"ios": "9.0"
},
"requires_arc": true,
"default_subspecs": "Basic",
"subspecs": [
{
"name": "Basic",
"source_files": [
"Source/**/*.swift"
],
"exclude_files": [
"Source/Rx/**/*.swift"
]
},
{
"name": "Rx",
"source_files": [
"Source/**/*.swift"
],
"dependencies": {
"RxSwift": [
]
}
}
]
}