-
Notifications
You must be signed in to change notification settings - Fork 16
/
Retry.podspec
29 lines (24 loc) · 1.11 KB
/
Retry.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Be sure to run `pod lib lint Retry.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Retry'
s.version = '0.6.2'
s.summary = 'Haven\'t you wished for `try` to sometimes try a little harder? Meet `retry`'
s.description = <<-DESC
retry and retryAsync keep running blocks of code that might throw until either
a maximum count of retries is reached or some custom developer defined strategy
instructs them to stop retrying.
DESC
s.homepage = 'https://github.com/icanzilb/Retry'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Marin Todorov' => 'touch-code-magazine@underplot.com' }
s.source = { :git => 'https://github.com/icanzilb/Retry.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/icanzilb'
s.ios.deployment_target = '9.0'
s.source_files = 'Retry/Classes/**/*'
end