forked from dropbox/SwiftyDropbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftyDropbox.podspec
24 lines (19 loc) · 947 Bytes
/
SwiftyDropbox.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
Pod::Spec.new do |s|
s.name = 'SwiftyDropbox'
s.version = '5.1.0'
s.summary = 'Dropbox Swift SDK for API v2'
s.homepage = 'https://dropbox.com/developers/'
s.license = 'MIT'
s.author = { 'Stephen Cobbe' => '[email protected]' }
s.source = { :git => 'https://github.com/dropbox/SwiftyDropbox.git', :tag => s.version }
s.source_files = 'Source/SwiftyDropbox/Shared/**/*.{swift,h,m}'
s.osx.source_files = 'Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/**/*.{swift,h,m}'
s.ios.source_files = 'Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/**/*.{swift,h,m}'
s.requires_arc = true
s.swift_version = '5.0'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '11.0'
s.osx.frameworks = 'AppKit', 'WebKit', 'SystemConfiguration', 'Foundation'
s.ios.frameworks = 'UIKit', 'WebKit', 'SystemConfiguration', 'Foundation'
s.dependency 'Alamofire', '~> 5.0.0'
end