[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / 6 / c / 5 / Redux.swift / 4.0.0 / Redux.swift.podspec.json
blob57ff8e64525a11accbe56faf2b75481ba651d760
2   "name": "Redux.swift",
3   "module_name": "Redux",
4   "version": "4.0.0",
5   "summary": "An implementation of a predictable state container in Swift.",
6   "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.",
7   "homepage": "https://github.com/fellipecaetano/Redux.swift",
8   "license": {
9     "type": "MIT",
10     "file": "LICENSE"
11   },
12   "authors": {
13     "Fellipe Caetano": "fellipe.caetano4@gmail.com"
14   },
15   "source": {
16     "git": "https://github.com/fellipecaetano/Redux.swift.git",
17     "tag": "4.0.0"
18   },
19   "platforms": {
20     "ios": "9.0"
21   },
22   "requires_arc": true,
23   "default_subspecs": "Basic",
24   "pushed_with_swift_version": "3.0",
25   "subspecs": [
26     {
27       "name": "Basic",
28       "source_files": [
29         "Source/**/*.swift"
30       ],
31       "exclude_files": [
32         "Source/Rx/**/*.swift"
33       ]
34     },
35     {
36       "name": "Rx",
37       "source_files": [
38         "Source/**/*.swift"
39       ],
40       "dependencies": {
41         "RxSwift": [
43         ]
44       }
45     }
46   ]