Skip to content

Commit

Permalink
Adding podspec for AFOAuth1Client 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Mar 5, 2013
1 parent 194ba47 commit 7cc13a8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions AFOAuth1Client/0.1.1/AFOAuth1Client.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = "AFOAuth1Client"
s.version = "0.1.1"
s.summary = "AFNetworking Extension for OAuth 1.0a Authentication"
s.homepage = "https://github.com/AFNetworking/AFOAuth1Client"
s.license = 'MIT'
s.author = { 'Mattt Thompson' => 'm@mattt.me' }
s.source = { :git => "https://github.com/AFNetworking/AFOAuth1Client.git", :tag => '0.1.1' }
s.source_files = 'AFOAuth1Client'
s.requires_arc = true

s.ios.deployment_target = '5.0'
s.ios.frameworks = 'Security'

s.osx.deployment_target = '10.7'

s.dependency 'AFNetworking', '>= 0.9'

s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import <Security/Security.h>
#endif /* __OBJC__*/
EOS
end

0 comments on commit 7cc13a8

Please sign in to comment.