SocketRocket.podspec 726 B

123456789101112131415
  1. Pod::Spec.new do |s|
  2. s.name = "SocketRocket"
  3. s.version = '0.3.1-beta2'
  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', :commit => '82c9f8938f8b9b7aa578866cb7ce56bc11e52ced' }
  9. s.source_files = 'SocketRocket/*.{h,m,c}'
  10. s.requires_arc = true
  11. s.ios.frameworks = %w{CFNetwork Security}
  12. s.osx.frameworks = %w{CoreServices Security}
  13. s.osx.compiler_flags = '-Wno-format'
  14. s.libraries = "icucore"
  15. end