Files
JBChartView/SocketRocket/0.1/SocketRocket.podspec
T

19 lines
654 B
Ruby

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' => '' }
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
if config.ios?
s.frameworks = %w{CFNetwork Security}
else
s.frameworks = %w{CoreServices Security}
end
s.libraries = "icucore"
end