-
Notifications
You must be signed in to change notification settings - Fork 5
/
MungoHealer.podspec
27 lines (20 loc) · 1.04 KB
/
MungoHealer.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
Pod::Spec.new do |s|
s.name = "MungoHealer"
s.version = "0.3.2"
s.summary = "Error Handler based on localized & healable (recoverable) errors without the overhead of NSError. "
s.description = <<-DESC
Error Handler based on localized & healable (recoverable) errors without the overhead of NSError
(which you would have when using LocalizedError & RecoverableError instead).
DESC
s.homepage = "https://github.com/JamitLabs/MungoHealer"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Cihat Gündüz" => "[email protected]" }
s.social_media_url = "https://twitter.com/Dschee"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/JamitLabs/MungoHealer.git", :tag => "#{s.version}" }
s.source_files = "Frameworks/MungoHealer/**/*.swift"
s.framework = "UIKit"
s.swift_version = "4.2"
s.resource_bundle = { "MungoHealer" => ["Frameworks/SupportingFiles/*.lproj"] }
end