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
28 lines
1.4 KiB
Ruby
28 lines
1.4 KiB
Ruby
project 'Sample.xcodeproj'
|
|
source 'https://github.com/facebook/flipper.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
|
|
target 'Sample' do
|
|
platform :ios, '10.0'
|
|
|
|
# See docs/getting-started/ios-native.mdx
|
|
pod 'FlipperKit', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitLayoutComponentKitSupport', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/SKIOSNetworkPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitExamplePlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'FlipperKit/FlipperKitReactPlugin', :path => '../../FlipperKit.podspec', :configuration => 'Debug'
|
|
pod 'Flipper', :path => '../../Flipper.podspec', :configuration => 'Debug'
|
|
pod 'Flipper-DoubleConversion', :configuration => 'Debug'
|
|
pod 'Flipper-Folly', :configuration => 'Debug'
|
|
pod 'Flipper-Glog', :configuration => 'Debug'
|
|
pod 'Flipper-PeerTalk', :configuration => 'Debug'
|
|
pod 'libevent', :configuration => 'Debug'
|
|
pod 'Flipper-Boost-iOSX', :configuration => 'Debug'
|
|
pod 'OpenSSL-Universal', :configuration => 'Debug'
|
|
pod 'CocoaAsyncSocket', :configuration => 'Debug'
|
|
pod 'ComponentKit', '~> 0.31'
|
|
pod 'SocketRocket', '~> 0.6.0'
|
|
|
|
end
|