-
Notifications
You must be signed in to change notification settings - Fork 1
/
ErrorHandling.podspec
29 lines (24 loc) · 1.39 KB
/
ErrorHandling.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
Pod::Spec.new do |spec|
spec.name = "ErrorHandling"
spec.version = "0.1.0"
spec.summary = "An easy way to thoroughly handle errors in SwiftUI, with support for retry/recovery and sign out."
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
spec.description = <<-DESC
An easy way to thoroughly handle errors in SwiftUI, with support for retry/recovery and sign out.
It's too easy to make error handling an afterthought, and this library makes it easy to add functionality that your users expect when things don't go as planned.
DESC
spec.homepage = "https://github.com/RobotsAndPencils/ErrorHandling"
spec.license = "MIT"
spec.authors = { "Brandon Evans" => "[email protected]" }
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "13.0"
spec.source = { :git => "[email protected]:RobotsAndPencils/ErrorHandling.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*"
# spec.frameworks = "SomeFramework", "AnotherFramework"
end