Summary:
I have published the new tag of Peertalk on my [fork](https://github.com/priteshrnandgaonkar/peertalk) and published a [Flipper-PeerTalk](80e4cd9a05/Specs/d/6/6/Flipper-PeerTalk/0.0.4/Flipper-PeerTalk.podspec.json) pod on cocoapods. There was no reply on the [request](https://github.com/rsms/peertalk/issues/48) to publish the new version of the peertalk on their repository and it was blocking us to publish Flipper and FlipperKit pods to Cocoapods. For more context follow the issue #132. With this PR we would have all our dependencies on cocoapods and thus we can now publish Flipper and FlipperKit pods on the cocoapods master repository.
I have also added the Flipper-PeerTalk podspec file for future updates.
Pull Request resolved: https://github.com/facebook/flipper/pull/395
Reviewed By: passy
Differential Revision: D14642440
Pulled By: priteshrnandgaonkar
fbshipit-source-id: 7847c19cddea358ffb62d2c6f16fc06d1afa1ea1
21 lines
635 B
Ruby
21 lines
635 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
source 'https://github.com/facebook/Sonar.git'
|
|
source 'https://github.com/CocoaPods/Specs'
|
|
platform :ios, '9.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', '~>0.10'
|
|
pod 'DoubleConversion', '~>1.1'
|
|
pod 'glog', '~>0.3'
|
|
pod 'Flipper-Folly', '~>1.2'
|
|
pod 'CocoaAsyncSocket', '~>7.6'
|
|
|
|
end
|