Răsfoiți Sursa

Added a podspec for SocketRocket (see #4)

Luke Redpath 13 ani în urmă
părinte
comite
53e4592d48
1 a modificat fișierele cu 13 adăugiri și 0 ștergeri
  1. 13 0
      SocketRocket.podspec

+ 13 - 0
SocketRocket.podspec

@@ -0,0 +1,13 @@
+Pod::Spec.new do |s|
+  s.name         = "SocketRocket"
+  s.version      = '0.1'
+  s.summary      = 'A conforming WebSocket (RFC 6455) client library.'
+  s.homepage     = 'https://github.com/square/SocketRocket'
+  s.authors      = { 'Square' => 'lewis@squareup.com' }
+  s.source       = { :git => 'git://github.com/square/SocketRocket.git' }
+  s.source_files = 'SocketRocket/*.{h,m,c}'
+  s.clean_paths  = %w{SRWebSocketTests SocketRocket.xcodeproj TestChat TestChatServer TestSupport extern}
+  s.requires_arc = true
+  s.frameworks   = %w{CFNetwork Security}
+  s.libraries    = "icucore"
+end