如何在 GitLab 而不是 GitHub 上制作我自己的 cocoapods?
How can make my own cocoapods on GitLab instead of GitHub?
我想为自己的 cocoapod 创建 private 存储库,但是 Github需要 付款计划 让我继续。
所以我想知道我可以通过 Gitlab 做到这一点吗?
您可以按照“XCode + Gitlab + Cocoapods or How I modularised my iOS source code" by Jonathan Neumann.
中描述的相同过程进行操作
乔纳森正在使用 GitLab。
Create a specsrepo project within that group. This repository will host the podspecs that describe each of your modules. A podspec basically tells cocoapods what to install, and where to find it.
Do the same for the main project and one of its modules. Let’s call the projects TopProject and Submodule1
我想为自己的 cocoapod 创建 private 存储库,但是 Github需要 付款计划 让我继续。
所以我想知道我可以通过 Gitlab 做到这一点吗?
您可以按照“XCode + Gitlab + Cocoapods or How I modularised my iOS source code" by Jonathan Neumann.
中描述的相同过程进行操作乔纳森正在使用 GitLab。
Create a specsrepo project within that group. This repository will host the podspecs that describe each of your modules. A podspec basically tells cocoapods what to install, and where to find it.
Do the same for the main project and one of its modules. Let’s call the projects TopProject and Submodule1