forked from RxSwiftCommunity/RxAlamofire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxAlamofire.podspec
32 lines (25 loc) · 916 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
Pod::Spec.new do |s|
s.name = 'RxAlamofire'
s.version = '2.5'
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.9'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "RxAlamofire/Source/*.swift"
ss.dependency "RxSwift", "~> 2.5"
ss.dependency "Alamofire", "~> 3.4"
ss.framework = "Foundation"
end
s.subspec "RxCocoa" do |ss|
ss.source_files = "RxAlamofire/Source/Cocoa/*.swift"
ss.dependency "RxCocoa", "~> 2.4"
ss.dependency "RxAlamofire/Core"
end
end