-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSafeDecoder.podspec
27 lines (19 loc) · 967 Bytes
/
SafeDecoder.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 = "SafeDecoder"
s.version = "1.2"
s.summary = "A Codable extension to decode arrays and to catch & log all decoding failures"
s.description = <<-DESC
SafeDecoder makes two improvements for Codable models:
When decoding arrays it can skip over invalid objects, allowing your app to show just valid objects
It can also collect all the decoding errors and send them to your logging class or service
DESC
s.homepage = "https://github.com/IdleHandsApps/SafeDecoder/"
s.license = { :type => "MIT" }
s.author = { "Fraser Scott-Morrison" => "[email protected]" }
s.ios.deployment_target = "9.0"
s.swift_version = "5.0"
s.source = { :git => "https://github.com/IdleHandsApps/SafeDecoder.git", :tag => s.version.to_s }
s.source_files = "Sources/*.swift"
s.framework = "UIKit"
s.requires_arc = true
end