Selaa lähdekoodia

Merge pull request #251 from square/dimitris/podspec

Update podspec
Dimitris 10 vuotta sitten
vanhempi
commit
bfc2dba3de
1 muutettua tiedostoa jossa 10 lisäystä ja 6 poistoa
  1. 10 6
      SocketRocket.podspec

+ 10 - 6
SocketRocket.podspec

@@ -1,15 +1,19 @@
 Pod::Spec.new do |s|
   s.name               = "SocketRocket"
-  s.version            = '0.3.1-beta2'
+  s.version            = '0.3.2'
   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', :commit => '82c9f8938f8b9b7aa578866cb7ce56bc11e52ced' }
-  s.source_files       = 'SocketRocket/*.{h,m,c}'
+  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.frameworks     = %w{CFNetwork Security}
-  s.osx.frameworks     = %w{CoreServices Security}
-  s.osx.compiler_flags = '-Wno-format'
+
+  s.ios.deployment_target = '6.0'
+  s.osx.deployment_target = '10.8'
+
+  s.ios.frameworks     = 'CFNetwork', 'Security'
+  s.osx.frameworks     = 'CoreServices', 'Security'
+
   s.libraries          = "icucore"
 end