-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathAFNetworking+RetryPolicy.podspec
20 lines (20 loc) · 1.35 KB
/
AFNetworking+RetryPolicy.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'AFNetworking+RetryPolicy'
spec.version = '2.0.0'
spec.summary = 'AFNetworking+RetryPolicy is an objective-c category that adds the ability to set the retry logic for requests made with AFNetworking.'
spec.description = 'If a request timed out, you usually have to call that request again by yourself. AFNetworking+RetryPolicy is an objective-c category that adds the ability to set the retry logic for requests made with AFNetworking.'
spec.homepage = 'https://github.com/kubatruhlar/AFNetworking-RetryPolicy'
spec.screenshots = 'https://raw.githubusercontent.com/kubatruhlar/AFNetworking-RetryPolicy/master/Images/logo.png'
spec.license = {:type => 'MIT', :file => 'LICENSE.md'}
spec.author = 'Jakub Truhlar'
spec.social_media_url = 'http://kubatruhlar.cz'
spec.ios.deployment_target = '9.0'
spec.osx.deployment_target = '10.10'
spec.source = {:git => 'https://github.com/kubatruhlar/AFNetworking-RetryPolicy.git', :tag => "#{spec.version}"}
spec.source_files = 'AFNetworking+RetryPolicy/*.{h,m}'
spec.framework = 'Foundation'
spec.requires_arc = true
# Dependencies (Operators =, >=, >, <=, < and ~>)
spec.dependency 'AFNetworking', '~> 4.0'
spec.dependency 'ObjcAssociatedObjectHelpers', '2.0.1'
end