SwiftBase32.podspec 843 B

12345678910111213141516
  1. Pod::Spec.new do |s|
  2. s.name = 'SwiftBase32'
  3. s.version = '0.9.0'
  4. s.summary = 'Base32 implementation for Swift.'
  5. s.homepage = 'https://git.forgetive.net/XCAppCollection/SwiftBase32'
  6. s.source = { :git => s.homepage + '.git', :tag => s.version }
  7. s.license = { :type => 'MIT', :file => 'LICENSE' }
  8. s.author = { 'Norio Nomura' => 'norio.nomura@gmail.com' }
  9. s.source_files = 'Sources/**/*.{h,c,swift}'
  10. s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
  11. s.ios.deployment_target = '9.0'
  12. s.osx.deployment_target = '10.9'
  13. s.tvos.deployment_target = '9.0'
  14. s.watchos.deployment_target = '2.0'
  15. s.swift_versions = ['4.2', '5.0', '5.1']
  16. end