* Use SocketRocket pluggable policies Pluggable policies are currently only in our fork, but pending upstream PR: https://github.com/facebook/SocketRocket/pull/429 Also: * rebased SocketRocket against latest upstream to incorporate bug fixes. * adapt to new upstream API for error handling (vs previous exception throwing) * renamed AFSecurityOWSPolicy -> OWSHTTPSecurityPolicy to differentiate it from OSWWebSocketSecurityPolicy * Follow conventional singleton pattern with onceToken * bump xcode version to play nice with SWIFT_NAME in SocketRocket // FREEBIE
13 lines
360 B
Ruby
13 lines
360 B
Ruby
platform :ios, '8.0'
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
target 'TSKitiOSTestApp' do
|
|
pod 'SocketRocket', git: 'https://github.com/WhisperSystems/SocketRocket.git', branch: 'pluggable-security-policies'
|
|
pod 'SignalServiceKit', :path => '../../SignalServiceKit.podspec'
|
|
|
|
target 'TSKitiOSTestAppTests' do
|
|
inherit! :search_paths
|
|
end
|
|
end
|
|
|