Files
JBChartView/AFOAuth2Client/0.1.0/AFOAuth2Client.podspec
T
2012-12-28 11:36:07 -05:00

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