-
Notifications
You must be signed in to change notification settings - Fork 20
/
InstagramSimpleOAuth.podspec
19 lines (18 loc) · 1.14 KB
/
InstagramSimpleOAuth.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'InstagramSimpleOAuth'
s.version = '0.5.1'
s.summary = 'A quick and simple way to authenticate an Instagram user in your iPhone or iPad app.'
s.homepage = 'https://github.com/rbaumbach/InstagramSimpleOAuth'
s.license = { :type => 'MIT', :file => 'MIT-LICENSE.txt' }
s.author = { 'Ryan Baumbach' => '[email protected]' }
s.source = { :git => 'https://github.com/rbaumbach/InstagramSimpleOAuth.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '8.0'
s.public_header_files = 'InstagramSimpleOAuth/Source/InstagramSimpleOAuth.h', 'InstagramSimpleOAuth/Source/InstagramSimpleOAuthViewController.h',
'InstagramSimpleOAuth/Source/InstagramLoginResponse.h', 'InstagramSimpleOAuth/Source/InstagramUser.h'
s.source_files = 'InstagramSimpleOAuth/Source/*.{h,m}'
s.resources = 'InstagramSimpleOAuth/Resources/*.xib'
s.dependency 'SimpleOAuth2', '0.1.5'
s.dependency 'MBProgressHUD', '>= 0.9'
end