forked from Anviking/Decodable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecodable.podspec
24 lines (23 loc) · 916 Bytes
/
Decodable.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
Pod::Spec.new do |s|
s.name = 'Decodable'
s.version = '0.7.0'
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' => '[email protected]',
'Joe Mattiello' => '[email protected]'
}
s.source = {
:git => 'https://github.com/newscorp-ghfb/Decodable.git',
:tag => s.version.to_s
}
s.swift_versions = ['4.2', '5.0']
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