-
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.
- Loading branch information
1 parent
616e68f
commit 465b64e
Showing
4 changed files
with
58 additions
and
43 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,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AFNetworking+RetryPolicy' | ||
s.version = '1.0.0' | ||
s.summary = 'Nice category that adds the ability to set the retry interval, retry count and progressive.' | ||
|
||
s.description = 'If the request timed out, you usually have to call the request again by yourself. AFNetworking+RetryPolicy handles that for you. Adds the ability to set the retry interval, retry count and progressive.' | ||
|
||
s.homepage = 'https://github.com/kubatru/AFNetworking-RetryPolicy' | ||
s.screenshots = 'https://raw.githubusercontent.com/kubatru/AFNetworking-RetryPolicy/master/Images/logo.png' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE.md' } | ||
s.author = 'Jakub Truhlar' | ||
s.social_media_url = 'http://kubatruhlar.cz' | ||
s.platform = :ios, '7.0' | ||
s.source = { :git => 'https://github.com/kubatru/AFNetworking-RetryPolicy.git', :tag => '1.0.0' } | ||
s.source_files = 'AFNetworking+RetryPolicy/*' | ||
s.framework = 'Foundation' | ||
s.dependency 'AFNetworking', '~> 3.0' | ||
s.requires_arc = true | ||
Pod::Spec.new do |spec| | ||
spec.name = 'AFNetworking+RetryPolicy' | ||
spec.version = '1.0.0' | ||
spec.summary = 'Nice category that adds the ability to set the retry interval, retry count and progressive.' | ||
spec.description = 'If the request timed out, you usually have to call the request again by yourself. AFNetworking+RetryPolicy handles that for you. Adds the ability to set the retry interval, retry count and progressive.' | ||
spec.homepage = 'https://github.com/kubatru/AFNetworking-RetryPolicy' | ||
spec.screenshots = 'https://raw.githubusercontent.com/kubatru/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.platform = :ios, '7.0' | ||
spec.source = {:git => 'https://github.com/kubatru/AFNetworking-RetryPolicy.git', :tag => '1.0.0'} | ||
spec.source_files = 'AFNetworking+RetryPolicy/*.{h,m}' | ||
spec.framework = 'Foundation' | ||
spec.requires_arc = true | ||
# Dependencies (Operators =, >=, >, <=, < and ~>) | ||
spec.dependency 'AFNetworking', '~> 3.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
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
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