Adds stub podspec files to reserve the name on cocoapods master repo (#330)

Summary:
This PR adds a stub podspec files which will be pushed to cocoapods master repo to reserve our project name on cocoapods master repo. This PR follows the suggestion given by KrauseFx in #132 132. I have reserved the name of [Flipper](https://cocoapods.org/pods/Flipper) and [FlipperKit](https://cocoapods.org/pods/FlipperKit) on cocoapods with these stub podspecs.
Pull Request resolved: https://github.com/facebook/flipper/pull/330

Reviewed By: passy

Differential Revision: D13118301

Pulled By: priteshrnandgaonkar

fbshipit-source-id: 754a69ee9577c1357cf3284b5c89143d46f69c87
This commit is contained in:
Pritesh Nandgaonkar
2018-11-19 04:19:05 -08:00
committed by Facebook Github Bot
parent 6e1c1d57f9
commit 88b5f28b09
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Pod::Spec.new do |spec|
spec.name = 'Flipper'
spec.version = '0.11.1'
spec.license = { :type => 'MIT' }
spec.source = { :git => 'https://github.com/facebook/Sonar.git',
:tag=> "v0.11.1" }
spec.homepage = 'https://github.com/facebook/flipper'
spec.source_files = 'README.md'
spec.summary = 'Flipper iOS podspec'
spec.authors = 'Facebook'
spec.static_framework = true
spec.module_name = 'Flipper'
spec.platforms = { :ios => "8.4" }
end

View File

@@ -0,0 +1,14 @@
Pod::Spec.new do |spec|
spec.name = 'FlipperKit'
spec.version = '0.11.1'
spec.license = { :type => 'MIT' }
spec.source = { :git => 'https://github.com/facebook/Sonar.git',
:tag=> "v0.11.1" }
spec.homepage = 'https://github.com/facebook/flipper'
spec.source_files = 'README.md'
spec.summary = 'FlipperKit iOS podspec'
spec.authors = 'Facebook'
spec.static_framework = true
spec.module_name = 'FlipperKit'
spec.platforms = { :ios => "8.4" }
end

1
StubPodspecs/README.md Normal file
View File

@@ -0,0 +1 @@
These podspecs are the stubs and are solely meant to reserve the name on cocoapods repo until this [issue](https://github.com/facebook/flipper/issues/132) is solved.