- Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCleanJSON.podspec
More file actions
Latest commit
22 lines (18 loc) · 746 Bytes
/
Copy pathCleanJSON.podspec
File metadata and controls
22 lines (18 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.newdo |s|
s.name='CleanJSON'
s.version='1.0.9'
s.summary='Swift JSON decoder for Codable.'
s.homepage='https://github.com/Pircate/CleanJSON'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Pircate'=>'gao497868860@163.com'}
s.source={:git=>'https://github.com/Pircate/CleanJSON.git',:tag=>s.version.to_s}
s.source_files='Sources/CleanJSON/**/*'
s.ios.deployment_target='12.0'
s.osx.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
s.swift_versions=['5.2']
s.pod_target_xcconfig={
"BUILD_LIBRARY_FOR_DISTRIBUTION"=>'YES'
}
end