Starscream.podspec 834 B

12345678910111213141516171819
  1. Pod::Spec.new do |s|
  2. s.name = "Starscream"
  3. s.version = "4.0.4"
  4. s.summary = "A conforming WebSocket RFC 6455 client library in Swift."
  5. s.homepage = "https://git.forgetive.net"
  6. s.license = 'Apache License, Version 2.0'
  7. s.author = {'Dalton Cherry' => 'http://daltoniam.com', 'Austin Cherry' => 'http://austincherry.me'}
  8. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/Starscream.git', :tag => "#{s.version}"}
  9. s.social_media_url = 'https://git.forgetive.net'
  10. s.ios.deployment_target = '12.0'
  11. s.osx.deployment_target = '10.13'
  12. s.tvos.deployment_target = '12.0'
  13. s.watchos.deployment_target = '2.0'
  14. s.source_files = 'Sources/**/*.swift'
  15. s.swift_version = '5.0'
  16. s.resource_bundles = {
  17. 'Starscream_Privacy' => ['Sources/PrivacyInfo.xcprivacy'],
  18. }
  19. end