Skip to content

Commit

Permalink
Cleanup and update summary for podspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlutsenko committed Aug 23, 2016
1 parent 45f03ed commit 103dc26
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions SocketRocket.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]', 'Dan Federman' => '[email protected]', 'Mike Lewis' => '[email protected]' }
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'
Expand All @@ -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

0 comments on commit 103dc26

Please sign in to comment.