forked from rbaumbach/DropboxSimpleOAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DropboxSimpleOAuth.podspec
20 lines (19 loc) · 1.1 KB
/
DropboxSimpleOAuth.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'DropboxSimpleOAuth'
s.version = '0.0.1'
s.summary = 'A quick and simple way to authenticate a Dropbox user in your iPhone or iPad app.'
s.homepage = 'https://github.com/rbaumbach/DropboxSimpleOAuth'
s.license = { :type => 'MIT', :file => 'MIT.LICENSE' }
s.author = { 'Ryan Baumbach' => '[email protected]' }
s.source = { :git => 'https://github.com/rbaumbach/DropboxSimpleOAuth.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '7.0'
s.public_header_files = 'DropboxSimpleOAuth/DropboxSimpleOAuth.h', 'DropboxSimpleOAuth/DropboxSimpleOAuthViewController.h',
'DropboxSimpleOAuth/DropboxLoginResponse.h'
s.source_files = 'DropboxSimpleOAuth/Source/*.{h,m}'
s.resources = 'DropboxSimpleOAuth/Source/*.xib'
s.frameworks = 'Foundation', 'UIKit'
s.dependency 'AFNetworking', '~> 2.0'
s.dependency 'MBProgressHUD', '~> 0.9'
end