forked from vadymmarkov/When
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhen.podspec
31 lines (27 loc) · 907 Bytes
/
When.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
Pod::Spec.new do |s|
s.name = "When"
s.summary = "A lightweight implementation of Promises in Swift"
s.version = "2.2.1"
s.homepage = "https://github.com/vadymmarkov/When"
s.license = 'MIT'
s.author = { "Vadym Markov" => "[email protected]" }
s.source = {
:git => "https://github.com/vadymmarkov/When.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/vadymmarkov'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/When/**/*"
ss.framework = "Foundation"
end
s.subspec "RxSwift" do |ss|
ss.source_files = "Sources/RxWhen/**/*"
ss.dependency "When/Core"
ss.dependency "RxSwift", "~> 3.0"
end
end