forked from SwiftRex/SwiftRex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftRex.podspec
27 lines (23 loc) · 1.31 KB
/
SwiftRex.podspec
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
Pod::Spec.new do |s|
s.name = 'SwiftRex'
s.version = '0.8.10'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or 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/SwiftRex/**/*.swift"
s.framework = "Foundation"
end