-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathAFNetworking+AutoRetry.podspec
More file actions
24 lines (21 loc) · 1021 Bytes
/
AFNetworking+AutoRetry.podspec
File metadata and controls
24 lines (21 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'AFNetworking+AutoRetry'
s.version = '2.2.4'
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 = '8.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source_files = '*.{h,m}'
s.dependency 'AFNetworking', '~> 2.2'
s.dependency 'ObjcAssociatedObjectHelpers'
end