From ef7f6b8ee70f4483aca81d0b12645dff71001b78 Mon Sep 17 00:00:00 2001 From: Shai Ohev Zion Date: Thu, 10 Apr 2014 13:02:45 +0300 Subject: [PATCH] new version for AFNetworking-AutoRetry --- .../0.0.3/AFNetworking+AutoRetry.podspec | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AFNetworking+AutoRetry/0.0.3/AFNetworking+AutoRetry.podspec diff --git a/AFNetworking+AutoRetry/0.0.3/AFNetworking+AutoRetry.podspec b/AFNetworking+AutoRetry/0.0.3/AFNetworking+AutoRetry.podspec new file mode 100644 index 00000000000000..8934e32add98da --- /dev/null +++ b/AFNetworking+AutoRetry/0.0.3/AFNetworking+AutoRetry.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.name = 'AFNetworking+AutoRetry' + s.version = '0.0.3' + s.summary = 'Auto Retries for AFNetworking requests' + s.description = <<-DESC + A minimal category which extends AFNetworking, currently only AFHTTPRequestOperationManager, to + add retries to the requests. you can specify the number of retries, and when they are reached + your failure block is called (instead of at the first time using only AFNetworking) + DESC + s.homepage = 'https://github.com/shaioz/AFNetworking-AutoRetry' + s.license = 'MIT' + s.author = { "Shai Ohev Zion" => "github@shaioz.com" } + s.source = { :git => 'https://github.com/shaioz/AFNetworking-AutoRetry.git', + :tag => "v#{s.version}" } + + s.ios.deployment_target = '6.0' + s.requires_arc = true + + s.source_files = '*.{h,m}' + + s.dependency 'AFNetworking', '~> 2' +end