-
Notifications
You must be signed in to change notification settings - Fork 246
/
RxAlamofire.podspec
33 lines (28 loc) · 1.05 KB
/
RxAlamofire.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 = "RxAlamofire"
# Version to always follow latest tag, with fallback to major
s.version = "6.1.2"
s.license = "MIT"
s.summary = "RxSwift wrapper around the elegant HTTP networking in Swift Alamofire"
s.homepage = "https://github.com/RxSwiftCommunity/RxAlamofire"
s.authors = { "RxSwift Community" => "community@rxswift.org" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxAlamofire.git", :tag => "v" + s.version.to_s }
s.swift_version = "5.1"
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.12"
s.tvos.deployment_target = "10.0"
s.watchos.deployment_target = "3.0"
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/RxAlamofire/*.swift"
ss.dependency "RxSwift", "~> 6.0"
ss.dependency "Alamofire", "~> 5.4"
ss.framework = "Foundation"
end
s.subspec "RxCocoa" do |ss|
ss.source_files = "Sources/RxAlamofire/Cocoa/*.swift"
ss.dependency "RxCocoa", "~> 6.0"
ss.dependency "RxAlamofire/Core"
end
end