forked from ReSwift/ReSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReSwift.podspec
32 lines (30 loc) · 1.3 KB
/
ReSwift.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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "ReSwift"
s.version = "6.1.1"
s.summary = "Unidirectional Data Flow in Swift"
s.description = <<-DESC
ReSwift is a Redux-like implementation of the unidirectional data flow architecture in Swift.
It embraces a unidirectional data flow that only allows state mutations through declarative actions.
DESC
s.homepage = "https://github.com/ReSwift/ReSwift"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = {
"Benjamin Encz" => "[email protected]",
"Karl Bowden" => "[email protected]",
"Malcolm Jarvis" => "[email protected]",
"Christian Tietze" => "[email protected]"
}
s.documentation_url = "https://reswift.github.io/ReSwift/"
s.social_media_url = "https://twitter.com/benjaminencz"
s.source = {
:git => "https://github.com/ReSwift/ReSwift.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'ReSwift/**/*.swift'
s.swift_versions = [ "5.7", "5.6", "5.5", "5.4", "5.3", "5.2", "5.0", "4.2" ]
end