-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZeroModel.podspec
More file actions
31 lines (24 loc) · 986 Bytes
/
ZeroModel.podspec
File metadata and controls
31 lines (24 loc) · 986 Bytes
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
30
31
Pod::Spec.new do |spec|
spec.name = "ZeroModel"
spec.version = "1.0.0"
spec.summary = "Zero model files. Zero manual mapping. Zero crashes."
spec.description = <<-DESC
ZeroModel eliminates the need to write model files for API responses.
It dynamically maps any JSON at runtime, handles type changes without
crashing (Int -> String etc.), and caches values automatically until
the next API call updates them.
Write zero models. Get everything.
DESC
spec.homepage = "https://github.com/Forgwhiz/ZeroModel"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Your Name" => "Forgwhiz" }
spec.ios.deployment_target = "13.0"
spec.swift_versions = "5.5"
spec.source = {
:git => "https://github.com/Forgwhiz/ZeroModel.git",
:tag => spec.version.to_s
}
spec.source_files = "Sources/ZeroModel/**/*.swift"
spec.frameworks = "Foundation"
spec.requires_arc = true
end