Summary: Contains the implementation of FlipperWebSocket with any necessary changes to use it but without switching it on. About SocketRocket and Cocoapods A decision had to be made about whether to define different sub-specs, one for RSocket and another for SocketRocket. I've opted to keep the podspec as is because: - Keeps pod consumption as is. - Makes easier to switch implementations using GK. - There's no intention to keep RSocket going into the future. So, there's no point in creating a sub-spec only to remove it in the future. - SocketRocket is a relatively small library so is not contributing to a significant increase in binary size. If, as reviewer, you consider a subspec makes more sense, then feel free to reach out to discuss. Reviewed By: fabiomassimo Differential Revision: D30371791 fbshipit-source-id: 225c5b1de76aff1a6e36640a41765b963aaa2796
22 lines
670 B
Ruby
22 lines
670 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
source 'https://github.com/facebook/flipper.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
platform :ios, '10.0'
|
|
swift_version = "4.1"
|
|
target 'FlipperKit' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# use_frameworks!
|
|
|
|
project 'FlipperKit.xcodeproj'
|
|
pod 'Flipper', :path => '../Flipper.podspec'
|
|
# Pods for SonarKit
|
|
pod 'Flipper-PeerTalk', '~>0.0'
|
|
pod 'Flipper-RSocket', '~>1.1'
|
|
pod 'DoubleConversion', '~>1.1'
|
|
pod 'glog', '~>0.3'
|
|
pod 'Flipper-Folly', '~>2.2'
|
|
pod 'CocoaAsyncSocket', '~>7.6'
|
|
pod 'SocketRocket', '~> 0.6.0'
|
|
|
|
end
|