forked from jpsim/Yams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYams.podspec
16 lines (16 loc) · 855 Bytes
/
Yams.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'Yams'
s.version = '5.0.6'
s.summary = 'A sweet and swifty YAML parser.'
s.homepage = 'https://github.com/jpsim/Yams'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'JP Simard' => '[email protected]',
'Norio Nomura' => '[email protected]' }
s.source_files = 'Sources/**/*.{h,c,swift}'
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8']
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
end