From 103dc2623baa300c7e3277b0e2c91ef4485479d9 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Tue, 23 Aug 2016 14:57:52 -0700 Subject: [PATCH] Cleanup and update summary for podspec. --- SocketRocket.podspec | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/SocketRocket.podspec b/SocketRocket.podspec index d7293476e..0dbb39dae 100644 --- a/SocketRocket.podspec +++ b/SocketRocket.podspec @@ -1,15 +1,15 @@ Pod::Spec.new do |s| - s.name = "SocketRocket" + s.name = 'SocketRocket' 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.authors = 'Square' + s.authors = { 'Nikita Lutsenko' => 'nlutsenko@me.com', 'Dan Federman' => 'federman@squareup.com', 'Mike Lewis' => 'mikelikespie@gmail.com' } s.license = 'BSD' s.source = { :git => 'https://github.com/facebook/SocketRocket.git', :tag => s.version.to_s } s.requires_arc = true 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.osx.deployment_target = '10.8' @@ -18,6 +18,5 @@ Pod::Spec.new do |s| s.ios.frameworks = 'CFNetwork', 'Security' s.osx.frameworks = 'CoreServices', 'Security' s.tvos.frameworks = 'CFNetwork', 'Security' - - s.libraries = "icucore" + s.libraries = 'icucore' end