forked from ReSwift/ReSwift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReSwift.podspec
21 lines (21 loc) · 1.06 KB
/
ReSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "ReSwift"
s.version = "4.0.0"
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]" }
s.documentation_url = "http://reswift.github.io/ReSwift/"
s.social_media_url = "http://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'
end