Last active
August 29, 2015 14:03
-
-
Save eliperkins/ad60e3e2142678648eff to your computer and use it in GitHub Desktop.
AFAmazonS3Client compatible with AFNetworking 2.2.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "AFAmazonS3Client" | |
s.version = "2.2.0" | |
s.summary = "AFNetworking Client for the Amazon S3 API." | |
s.homepage = "https://github.com/AFNetworking/AFAmazonS3Client" | |
s.social_media_url = "https://twitter.com/AFNetworking" | |
s.license = 'MIT' | |
s.author = { "Mattt Thompson" => "[email protected]" } | |
s.source = { :git => "https://github.com/AFNetworking/AFAmazonS3Client.git", | |
:tag => "2.0.0" } | |
s.source_files = 'AFAmazonS3Client' | |
s.requires_arc = true | |
s.ios.deployment_target = '6.0' | |
s.osx.deployment_target = '10.8' | |
s.dependency 'AFNetworking', '~> 2.2' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment