SocketRocket.podspec 722 B

12345678910111213141516171819
  1. Pod::Spec.new do |s|
  2. s.name = "SocketRocket"
  3. s.version = '0.4.1'
  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.ios.frameworks = 'CFNetwork', 'Security'
  14. s.osx.frameworks = 'CoreServices', 'Security'
  15. s.libraries = "icucore"
  16. end