-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathApexy.podspec
39 lines (31 loc) · 1.07 KB
/
Apexy.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
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "Apexy"
s.version = "1.7.4"
s.summary = "HTTP transport library"
s.homepage = "https://github.com/RedMadRobot/apexy-ios"
s.license = { :type => "MIT"}
s.author = { "Alexander Ignatiev" => "[email protected]" }
s.source = { :git => "https://github.com/RedMadRobot/apexy-ios.git", :tag => "#{s.version}" }
s.ios.deployment_target = "13.0"
s.tvos.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.watchos.deployment_target = "6.0"
s.swift_version = "5.3"
s.subspec 'Core' do |sp|
sp.source_files = "Sources/Apexy/**/*.swift"
end
s.subspec 'Alamofire' do |sp|
sp.source_files = "Sources/ApexyAlamofire/*.swift"
sp.dependency "Apexy/Core"
sp.dependency "Alamofire", '~>5.6'
end
s.subspec 'URLSession' do |sp|
sp.source_files = "Sources/ApexyURLSession/*.swift"
sp.dependency "Apexy/Core"
end
s.subspec 'Loader' do |sp|
sp.source_files = "Sources/ApexyLoader/*.swift"
sp.dependency "Apexy/Core"
end
s.default_subspecs = ["Alamofire"]
end