-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathGDFileManagerKit.podspec
66 lines (45 loc) · 2.35 KB
/
GDFileManagerKit.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Pod::Spec.new do |s|
s.name = "GDFileManagerKit"
s.version = "0.0.2"
s.summary = "A consistent iOS API for cloud file storage services including Dropbox and Google Drive."
s.description = <<-DESC
GDFileManagerKit lets you access Dropbox, Google Drive, SugarSync and WebDAV with a consistent,
NSFileManager-like API.
Features of GDFileManagerKit include:
* Cached file metadata. Old metadata is re-validated where possible making API calls more efficient.
* Cached file downloads.
* Chunked upload / downloads where available for reliability in intermittently connected environments.
* Copy/Delete/Move file operations.
DESC
s.homepage = "http://github.com/GrahamDennis/GDFileManagerKit"
s.license = {:type => 'MIT'}
s.author = { "Graham Dennis" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/GrahamDennis/GDFileManagerKit.git", :tag => s.version.to_s }
s.source_files = 'Source/**/*.{h,m}'
s.resource_bundle = { 'GDFileManagerKit' => "Source/**/*.{png,xml,json,xcdatamodeld,storyboard,xib}"}
s.frameworks = 'SystemConfiguration', 'Foundation'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.3'
s.dependency 'SSKeychain'
s.dependency 'UIAlertView-Blocks'
s.dependency 'AFKissXMLRequestOperation'
s.dependency 'ISO8601DateFormatter'
s.dependency 'QuickDialog'
s.dependency 'AFOAuth2Client'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.ios.frameworks = 'Security', 'SystemConfiguration', 'MobileCoreServices', 'CoreData', 'QuartzCore'
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