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