23 lines
644 B
Ruby
23 lines
644 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'AFOAuth2Client'
|
|
s.version = '0.1.0'
|
|
s.license = 'MIT'
|
|
s.summary = 'AFNetworking Extension for OAuth 2 Authentication.'
|
|
s.homepage = 'https://github.com/AFNetworking/AFOAuth2Client'
|
|
s.author = { 'Mattt Thompson' => 'm@mattt.me' }
|
|
s.source = { :git => 'https://github.com/AFNetworking/AFOAuth2Client.git',
|
|
:tag => '0.1.0' }
|
|
s.source_files = 'AFOAuth2Client'
|
|
s.requires_arc = true
|
|
|
|
s.dependency 'AFNetworking', '~>1.0'
|
|
|
|
s.ios.frameworks = 'Security'
|
|
|
|
s.prefix_header_contents = <<-EOS
|
|
#ifdef __OBJC__
|
|
#import <Security/Security.h>
|
|
#endif /* __OBJC__*/
|
|
EOS
|
|
end
|