forked from SwiftRex/SwiftRex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveSwiftRex.podspec
More file actions
28 lines (24 loc) · 1.43 KB
/
ReactiveSwiftRex.podspec
File metadata and controls
28 lines (24 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = 'ReactiveSwiftRex'
s.version = '0.8.10'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using ReactiveSwift.'
s.description = <<-DESC
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
This pattern is also known as 'Unidirectional Dataflow' or 'Redux'.
DESC
s.homepage = 'https://github.com/SwiftRex/SwiftRex'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Luiz Barbosa' => 'swiftrex@developercity.de' }
s.source = { :git => 'https://github.com/swiftrex/SwiftRex.git',
:tag => s.version }
s.requires_arc = true
s.frameworks = 'Foundation'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.3'
s.source_files = "Sources/ReactiveSwiftRex/**/*.swift"
s.dependency 'SwiftRex', '~> 0.8.10'
s.dependency 'ReactiveSwift', '~> 7.0.0'
end