blob: f4d6bedbe43ead6af8f8362605b43ec39d08a248 [file] [log] [blame]
{
"name": "Redux.swift",
"module_name": "Redux",
"version": "0.4.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": "0.4.0"
},
"platforms": {
"ios": "8.0",
"osx": "10.10",
"tvos": "9.0",
"watchos": "2.0"
},
"requires_arc": true,
"default_subspecs": "Standard",
"subspecs": [
{
"name": "Standard",
"source_files": [
"Redux.swift/Classes/**/*"
],
"exclude_files": [
"Redux.swift/Classes/RxSwift/**/*"
]
},
{
"name": "RxSwift",
"source_files": [
"Redux.swift/Classes/**/*"
],
"dependencies": {
"RxSwift": [
"~> 2.6"
]
}
}
]
}