From c727c1ec9197931ad69817df4da831550e849f90 Mon Sep 17 00:00:00 2001 From: Barrett Jacobsen Date: Thu, 30 Aug 2012 09:28:43 -0500 Subject: [PATCH] [Add] AFAmazonS3Client (0.0.1) --- .../0.0.1/AFAmazonS3Client.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 AFAmazonS3Client/0.0.1/AFAmazonS3Client.podspec diff --git a/AFAmazonS3Client/0.0.1/AFAmazonS3Client.podspec b/AFAmazonS3Client/0.0.1/AFAmazonS3Client.podspec new file mode 100644 index 00000000000000..af1794b0546768 --- /dev/null +++ b/AFAmazonS3Client/0.0.1/AFAmazonS3Client.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "AFAmazonS3Client" + s.version = "0.0.1" + s.summary = "AFNetworking Client for the Amazon S3 API." + s.description = <<-DESC + AFAmazonS3Client is an AFHTTPClient subclass for interacting with the Amazon S3 API. + As the S3 API returns XML responses, you may find it useful to include AFKissXMLRequestOperation (just remember to do -registerHTTPOperationClass:) + Caution: This code is still in its early stages of development, so exercise caution when incorporating this into production code. + DESC + s.homepage = "https://github.com/AFNetworking/AFAmazonS3Client" + s.license = 'MIT' + s.author = { "Mattt Thompson" => "m@mattt.me" } + s.source = { :git => "https://github.com/AFNetworking/AFAmazonS3Client.git", :commit => "f092a1e960e628b07b1bfc2cc24a0d66eff55280" } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = '*.{h,m}' + s.dependency 'AFNetworking', '~> 1.0RC1' +end