forked from AFNetworking/AFOAuth2Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AFOAuth2Client.podspec
30 lines (27 loc) · 964 Bytes
/
AFOAuth2Client.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
Pod::Spec.new do |s|
s.name = 'AFOAuth2Client'
s.version = '0.1.2'
s.license = 'MIT'
s.summary = 'AFNetworking Extension for OAuth 2 Authentication.'
s.homepage = 'https://github.com/AFNetworking/AFOAuth2Client'
s.social_media_url = "https://twitter.com/AFNetworking"
s.author = { 'Mattt Thompson' => '[email protected]' }
s.source = { :git => 'https://github.com/AFNetworking/AFOAuth2Client.git',
:tag => '0.1.2' }
s.source_files = 'AFOAuth2Client'
s.requires_arc = true
s.dependency 'AFNetworking', '~>1.3'
s.ios.frameworks = 'Security'
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import <Security/Security.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
#endif /* __OBJC__*/
EOS
end