SocketRocket.podspec 1011 B

12345678910111213141516171819202122
  1. Pod::Spec.new do |s|
  2. s.name = 'SocketRocket'
  3. s.version = '1.0.0'
  4. s.summary = 'A conforming WebSocket (RFC 6455) client library for iOS, macOS and tvOS.'
  5. s.homepage = 'https://git.forgetive.net/XCAppCollection/SocketRocket'
  6. s.authors = { 'Nikita Lutsenko' => 'nlutsenko@me.com', 'Dan Federman' => 'federman@squareup.com', 'Mike Lewis' => 'mikelikespie@gmail.com' }
  7. s.license = 'BSD'
  8. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/SocketRocket.git', :tag => s.version.to_s }
  9. s.requires_arc = true
  10. s.source_files = 'SocketRocket/**/*.{h,m}'
  11. s.public_header_files = 'SocketRocket/*.h'
  12. s.ios.deployment_target = '11.0'
  13. s.osx.deployment_target = '10.13'
  14. s.tvos.deployment_target = '11.0'
  15. s.ios.frameworks = 'CFNetwork', 'Security'
  16. s.osx.frameworks = 'CoreServices', 'Security'
  17. s.tvos.frameworks = 'CFNetwork', 'Security'
  18. s.libraries = 'icucore'
  19. end