forked from CodaFi/AFNetworking-RACExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAFNetworking-RACExtensions.podspec
30 lines (27 loc) · 1.37 KB
/
AFNetworking-RACExtensions.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
Pod::Spec.new do |s|
s.name = "AFNetworking-RACExtensions"
s.version = "0.1.8"
s.summary = "AFNetworking-RACExtensions is a delightful extension to the AFNetworking classes for iOS and Mac OS X."
s.homepage = "https://github.com/CodaFi/AFNetworking-RACExtensions"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Robert Widmann" => "[email protected]" }
s.source = { :git => "https://github.com/CodaFi/AFNetworking-RACExtensions.git", :tag => "#{s.version}" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.default_subspecs = 'NSURLConnection', 'NSURLSession'
s.subspec 'ExperimentalProgressCallbacks' do |ss|
ss.dependency 'ReactiveCocoa/Core', '~> 2.0'
ss.source_files = 'RACAFNetworking/RACSubscriber+AFProgressCallbacks.{h,m}'
end
s.subspec 'NSURLConnection' do |ss|
ss.dependency 'AFNetworking/NSURLConnection', '~> 2.0'
ss.dependency 'ReactiveCocoa/Core', '~> 2.0'
ss.source_files = 'RACAFNetworking/AFURLConnectionOperation+RACSupport.{h,m}', 'RACAFNetworking/AFHTTPRequestOperationManager+RACSupport.{h,m}'
end
s.subspec 'NSURLSession' do |ss|
ss.dependency 'AFNetworking/NSURLSession', '~> 2.0'
ss.dependency 'ReactiveCocoa/Core', '~> 2.0'
ss.source_files = 'RACAFNetworking/AFHTTPSessionManager+RACSupport.{h,m}'
end
end