|
@@ -0,0 +1,19 @@
|
|
|
+Pod::Spec.new do |s|
|
|
|
+ s.name = "Starscream"
|
|
|
+ s.version = "4.0.4"
|
|
|
+ s.summary = "A conforming WebSocket RFC 6455 client library in Swift."
|
|
|
+ s.homepage = "https://git.forgetive.org"
|
|
|
+ s.license = 'Apache License, Version 2.0'
|
|
|
+ s.author = {'Dalton Cherry' => 'http://daltoniam.com', 'Austin Cherry' => 'http://austincherry.me'}
|
|
|
+ s.source = { :git => 'https://git.forgetive.org/XCAppCollection/Starscream.git', :tag => "#{s.version}"}
|
|
|
+ s.social_media_url = 'https://git.forgetive.org'
|
|
|
+ s.ios.deployment_target = '12.0'
|
|
|
+ s.osx.deployment_target = '10.13'
|
|
|
+ s.tvos.deployment_target = '12.0'
|
|
|
+ s.watchos.deployment_target = '2.0'
|
|
|
+ s.source_files = 'Sources/**/*.swift'
|
|
|
+ s.swift_version = '5.0'
|
|
|
+ s.resource_bundles = {
|
|
|
+ 'Starscream_Privacy' => ['Sources/PrivacyInfo.xcprivacy'],
|
|
|
+ }
|
|
|
+end
|