-
Notifications
You must be signed in to change notification settings - Fork 3
/
GROAuth2SessionManager.podspec
33 lines (29 loc) · 1.14 KB
/
GROAuth2SessionManager.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
Pod::Spec.new do |s|
s.name = 'GROAuth2SessionManager'
s.version = '0.1.4'
s.license = 'MIT'
s.summary = 'AFNetworking Extension for OAuth 2 Authentication.'
s.homepage = 'https://github.com/gabrielrinaldi/GROAuth2SessionManager'
s.author = { 'Gabriel Rinaldi' => '[email protected]', 'Mattt Thompson' => '[email protected]' }
s.source = { :git => 'https://github.com/corristo/GROAuth2SessionManager.git',
:commit => '650a13cce39059a83a9d23fbd9760cd3330a8254' }
s.source_files = 'GROAuth2SessionManager'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.dependency 'AFNetworking/NSURLSession', '~> 2.0.0'
s.dependency 'AFNetworking/NSURLConnection', '~> 2.0.0'
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