-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nikka.podspec
33 lines (29 loc) · 1.08 KB
/
Nikka.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
33
Pod::Spec.new do |s|
s.name = "Nikka"
s.version = "2.1.1"
s.summary = "A Networking library for Swift"
s.homepage = "https://github.com/stremsdoerfer/Nikka"
s.license = "Apache License, Version 2.0"
s.author = { "Emilien Stremsdoerfer" => "[email protected]" }
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.source = { :git => "https://github.com/stremsdoerfer/Nikka.git", :tag => s.version}
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/*.swift"
ss.framework = "Foundation"
end
s.subspec "Futures" do |ss|
ss.source_files = "Sources/Futures/*.swift"
ss.dependency 'Nikka/Core'
end
s.subspec "Rx" do |ss|
ss.source_files = "Sources/Rx/*.swift"
ss.dependency 'Nikka/Core'
ss.dependency "RxSwift"
ss.dependency "RxCocoa"
end
end