forked from Anviking/Decodable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDecodable.podspec
More file actions
16 lines (16 loc) · 806 Bytes
/
Decodable.podspec
File metadata and controls
16 lines (16 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Decodable"
s.version = "0.5"
s.summary = "Swift JSON parsing done (more) right"
s.description = "Simple yet powerful object mapping made possible by Swift 2's error handling. Greatly inspired by Argo, but without any functional programming and bizillion operators."
s.homepage = "https://github.com/Anviking/Decodable"
s.license = 'MIT'
s.author = { "Anviking" => "anviking@me.com" }
s.source = { :git => "https://github.com/Anviking/Decodable.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Sources/*.{swift,h}'
end