Skip to content

Commit

Permalink
new version for AFNetworking-AutoRetry
Browse files Browse the repository at this point in the history
  • Loading branch information
shaioz committed Apr 10, 2014
1 parent 1cf2a60 commit ef7f6b8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions 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

0 comments on commit ef7f6b8

Please sign in to comment.