forked from RxSwiftCommunity/RxAlamofire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxAlamofire.podspec
33 lines (26 loc) · 935 Bytes
/
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'
s.version = '3.0.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 = { 'Junior B.' => '[email protected]' }
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxAlamofire.git', :tag => s.version }
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.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/*.swift"
ss.dependency "RxSwift", "~> 3.0"
ss.dependency "Alamofire", "~> 4.0"
ss.framework = "Foundation"
end
s.subspec "RxCocoa" do |ss|
ss.source_files = "Sources/Cocoa/*.swift"
ss.dependency "RxCocoa", "~> 3.0"
ss.dependency "RxAlamofire/Core"
end
end