Yams/Yams.podspec

18 lines
876 B
Plaintext
Raw Normal View History

2016-11-20 05:40:34 +08:00
Pod::Spec.new do |s|
s.name = 'Yams'
2022-04-29 01:50:06 +08:00
s.version = '5.0.1'
2018-05-10 10:59:27 +08:00
s.summary = 'A sweet and swifty YAML parser.'
2016-11-20 05:40:34 +08:00
s.homepage = 'https://github.com/jpsim/Yams'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
2019-04-07 03:50:44 +08:00
s.authors = { 'JP Simard' => 'jp@jpsim.com',
'Norio Nomura' => 'norio.nomura@gmail.com' }
2016-11-20 05:40:34 +08:00
s.source_files = 'Sources/**/*.{h,c,swift}'
2022-04-29 01:50:06 +08:00
s.swift_versions = ['5.4', '5.5', '5.6']
2016-11-20 05:40:34 +08:00
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end