如何从 Cocoapods 中删除我的库?
How do I remove my library from Cocoapods?
由于一些所有权问题,我现在管理两个 Cocoapods 库,它们本质上是彼此重复的,在 Cocoapods 上具有不同的名称。为了简单起见,我想取下一个,只维护其中一个。
有什么方法可以从 Cocoapods 主干中删除我管理的库吗?
我知道很少有人(如果有的话)使用错误命名的库。但是随着库越来越受欢迎,越来越多的人在搜索 Cocoapods 时发现并包含错误的(现在已经过时的)版本。
在此更改中添加 deprecated_in_favor_of
attribute to the old specs you no longer want to maintain. This will notify users when they run pod install
that they should switch to the other spec. You'll need to submit a pull request to the specs repo。
由于一些所有权问题,我现在管理两个 Cocoapods 库,它们本质上是彼此重复的,在 Cocoapods 上具有不同的名称。为了简单起见,我想取下一个,只维护其中一个。
有什么方法可以从 Cocoapods 主干中删除我管理的库吗?
我知道很少有人(如果有的话)使用错误命名的库。但是随着库越来越受欢迎,越来越多的人在搜索 Cocoapods 时发现并包含错误的(现在已经过时的)版本。
在此更改中添加 deprecated_in_favor_of
attribute to the old specs you no longer want to maintain. This will notify users when they run pod install
that they should switch to the other spec. You'll need to submit a pull request to the specs repo。