123456789101112131415161718192021 |
- Pod::Spec.new do |s|
- s.name = "SocketRocket"
- s.version = '0.5.1'
- s.summary = 'A conforming WebSocket (RFC 6455) client library.'
- s.homepage = 'https://github.com/square/SocketRocket'
- s.authors = 'Square'
- s.license = 'Apache License, Version 2.0'
- s.source = { :git => 'https://github.com/square/SocketRocket.git', :tag => s.version.to_s }
- s.source_files = 'SocketRocket/*.{h,m}'
- s.requires_arc = true
- s.ios.deployment_target = '6.0'
- s.osx.deployment_target = '10.8'
- s.tvos.deployment_target = '9.0'
- s.ios.frameworks = 'CFNetwork', 'Security'
- s.osx.frameworks = 'CoreServices', 'Security'
- s.tvos.frameworks = 'CFNetwork', 'Security'
- s.libraries = "icucore"
- end
|