-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathHimotoki.podspec
30 lines (26 loc) · 1.33 KB
/
Himotoki.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
30
Pod::Spec.new do |s|
s.name = "Himotoki"
s.version = "4.0.0"
s.summary = "A type-safe JSON decoding library purely written in Swift"
s.description = <<-DESC
Himotoki (紐解き) is a type-safe JSON decoding library purely written in Swift. This library is highly inspired by popular JSON parsing libraries in Swift: [Argo](https://github.com/thoughtbot/Argo) and [ObjectMapper](https://github.com/Hearst-DD/ObjectMapper).
_Himotoki_ has the same meaning of 'decoding' in Japanese.
- Just do JSON decoding (deserialization) well. JSON encoding (serialization) would not be supported going forward. :wink:
- Much simpler API.
- Fail-fast conditional model building. This is useful for some `struct`s with non-optional `let` properties.
- No external dependencies.
DESC
s.homepage = "https://github.com/ikesyo/Himotoki"
s.license = "MIT"
s.author = { "Syo Ikeda" => "[email protected]" }
s.social_media_url = "https://twitter.com/ikesyo"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/ikesyo/Himotoki.git", :tag => s.version }
s.source_files = "Sources/**/*.swift"
s.requires_arc = true
s.cocoapods_version = ">= 1.4.0"
s.swift_version = "4.2"
end