forked from zwaldowski/DZWebDAVClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DZWebDAVClient.podspec
27 lines (26 loc) · 1001 Bytes
/
DZWebDAVClient.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
Pod::Spec.new do |s|
s.name = 'DZWebDAVClient'
s.license = 'MIT'
s.version = '1.0.1'
s.summary = 'An Objective-C WebDAV client based on AFNetworking.'
s.homepage = 'https://github.com/zwaldowski/DZWebDAVClient'
s.author = { 'Zachary Waldowski' => '[email protected]' }
s.source = { :git => 'https://github.com/zwaldowski/DZWebDAVClient.git', :tag => '1.0.1' }
s.source_files = 'DZWebDAVClient/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.dependency 'AFNetworking', '~> 1.0'
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
end