forked from romaonthego/AFXAuthClient
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AFXAuthClient.podspec
31 lines (27 loc) · 1.08 KB
/
AFXAuthClient.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
Pod::Spec.new do |s|
s.name = 'AFXAuthClient'
s.version = '1.2'
s.summary = 'AFNetworking Extension for XAuth Authentication.'
s.homepage = 'https://github.com/romaonthego/AFXAuthClient'
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { 'Roman Efimov' => '[email protected]', 'Mattt Thompson' => '[email protected]', 'Eric Johnson' => '[email protected]' }
s.source = { :git => 'https://github.com/Lickability/AFXAuthClient.git', :tag => '1.2' }
s.source_files = 'AFXAuthClient'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.ios.frameworks = 'Security'
s.osx.deployment_target = '10.9'
s.dependency 'AFNetworking', '~> 2.0'
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
end