SocketRocket.podspec 808 B

123456789101112131415161718192021
  1. Pod::Spec.new do |s|
  2. s.name = "SocketRocket"
  3. s.version = '0.5.0'
  4. s.summary = 'A conforming WebSocket (RFC 6455) client library.'
  5. s.homepage = 'https://github.com/square/SocketRocket'
  6. s.authors = 'Square'
  7. s.license = 'Apache License, Version 2.0'
  8. s.source = { :git => 'https://github.com/square/SocketRocket.git', :tag => s.version.to_s }
  9. s.source_files = 'SocketRocket/*.{h,m}'
  10. s.requires_arc = true
  11. s.ios.deployment_target = '6.0'
  12. s.osx.deployment_target = '10.8'
  13. s.tvos.deployment_target = '9.0'
  14. s.ios.frameworks = 'CFNetwork', 'Security'
  15. s.osx.frameworks = 'CoreServices', 'Security'
  16. s.tvos.frameworks = 'CFNetwork', 'Security'
  17. s.libraries = "icucore"
  18. end