Skip to content

Commit

Permalink
Merge pull request CocoaPods#12061 from geoffmacd/master
Browse files Browse the repository at this point in the history
Adding ImgurSession
  • Loading branch information
keith committed May 19, 2014
2 parents 2d2d3d7 + 230a221 commit 2525d93
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ImgurSession/1.0/ImgurSession.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Pod::Spec.new do |spec|
spec.name = 'ImgurSession'
spec.version = '1.0'
spec.license = {:type => 'MIT'}
spec.homepage = 'https://github.com/geoffmacd/ImgurSession'
spec.summary = 'Imgur API for Objective C'
spec.source = {:git => 'https://github.com/geoffmacd/ImgurSession.git', :tag => 'V1.0'}
spec.source_files = 'ImgurSession/**/*.{h,m}'
spec.author = { "Geoff MacDonald" => "gmacdonald@pivotallabs.com" }
spec.framework = 'SystemConfiguration'
spec.dependency 'AFNetworking'
spec.osx.deployment_target = "10.8"
spec.requires_arc = true

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

0 comments on commit 2525d93

Please sign in to comment.