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
19 lines
1.3 KiB
Ruby
19 lines
1.3 KiB
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = 'Flipper-PeerTalk'
|
|
spec.version = '0.0.4'
|
|
spec.license = { :type => 'MIT' }
|
|
spec.homepage = 'http://rsms.me/peertalk/'
|
|
spec.authors = { 'Rasmus Andersson' => 'rasmus@notion.se' }
|
|
spec.summary = 'iOS and OS X Cocoa library for communicating over USB and TCP.'
|
|
|
|
spec.source = { :git => "https://github.com/priteshrnandgaonkar/peertalk.git",
|
|
:tag => "v0.0.3" }
|
|
spec.source_files = 'peertalk/*.{h,m}'
|
|
spec.requires_arc = true
|
|
spec.ios.deployment_target = '8.4'
|
|
spec.osx.deployment_target = '10.10'
|
|
spec.header_mappings_dir = 'peertalk'
|
|
spec.header_dir = 'peertalk'
|
|
spec.description = " PeerTalk is a iOS and OS X Cocoa library for communicating over USB and TCP.\n\n Highlights:\n\n * Provides you with USB device attach/detach events and attached device's info\n * Can connect to TCP services on supported attached devices (e.g. an iPhone), bridging the communication over USB transport\n * Offers a higher-level API (PTChannel and PTProtocol) for convenient implementations.\n * Tested and designed for libdispatch (aka Grand Central Dispatch).\n"
|
|
end
|