-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made the category compatible with AFNetworking 4
- Loading branch information
1 parent
a8271f6
commit ba6ad5d
Showing
49 changed files
with
1,429 additions
and
1,576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'AFNetworking+RetryPolicy' | ||
spec.version = '1.0.4' | ||
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 = '7.0' | ||
spec.osx.deployment_target = '10.9' | ||
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', '~> 3.0' | ||
spec.dependency 'AFNetworking', '~> 4.0' | ||
spec.dependency 'ObjcAssociatedObjectHelpers', '2.0.1' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.