Browse Source

Cleanup and update summary for podspec.

Nikita Lutsenko 9 years ago
parent
commit
103dc2623b
1 changed files with 5 additions and 6 deletions
  1. 5 6
      SocketRocket.podspec

+ 5 - 6
SocketRocket.podspec

@@ -1,15 +1,15 @@
 Pod::Spec.new do |s|
 Pod::Spec.new do |s|
-  s.name               = "SocketRocket"
+  s.name               = 'SocketRocket'
   s.version            = '0.5.1'
   s.version            = '0.5.1'
-  s.summary            = 'A conforming WebSocket (RFC 6455) client library.'
+  s.summary            = 'A conforming WebSocket (RFC 6455) client library for iOS, macOS and tvOS.'
   s.homepage           = 'https://github.com/facebook/SocketRocket'
   s.homepage           = 'https://github.com/facebook/SocketRocket'
-  s.authors            = 'Square'
+  s.authors            = { 'Nikita Lutsenko' => 'nlutsenko@me.com', 'Dan Federman' => 'federman@squareup.com', 'Mike Lewis' => 'mikelikespie@gmail.com' }
   s.license            = 'BSD'
   s.license            = 'BSD'
   s.source             = { :git => 'https://github.com/facebook/SocketRocket.git', :tag => s.version.to_s }
   s.source             = { :git => 'https://github.com/facebook/SocketRocket.git', :tag => s.version.to_s }
   s.requires_arc       = true
   s.requires_arc       = true
   
   
   s.source_files       = 'SocketRocket/**/*.{h,m}'
   s.source_files       = 'SocketRocket/**/*.{h,m}'
-  s.public_header_files       = 'SocketRocket/*.h'
+  s.public_header_files = 'SocketRocket/*.h'
 
 
   s.ios.deployment_target  = '6.0'
   s.ios.deployment_target  = '6.0'
   s.osx.deployment_target  = '10.8'
   s.osx.deployment_target  = '10.8'
@@ -18,6 +18,5 @@ Pod::Spec.new do |s|
   s.ios.frameworks     = 'CFNetwork', 'Security'
   s.ios.frameworks     = 'CFNetwork', 'Security'
   s.osx.frameworks     = 'CoreServices', 'Security'
   s.osx.frameworks     = 'CoreServices', 'Security'
   s.tvos.frameworks    = 'CFNetwork', 'Security'
   s.tvos.frameworks    = 'CFNetwork', 'Security'
-
-  s.libraries          = "icucore"
+  s.libraries          = 'icucore'
 end
 end