Pod制作公共庫(kù)時(shí)遇到的問題

Unable to find a pod with name, author, summary, or descriptionmatching ‘SKMoviePlayer’
關(guān)于發(fā)布代碼到CocoaPods(Trunk方式)上,就不多說了,可以看官方文檔,看不懂的話網(wǎng)上有很多手把手教程。
當(dāng)時(shí)我用 pod trunk 注冊(cè)賬戶的時(shí)候,由于選擇的用戶名和github.com上面的不一致,導(dǎo)致發(fā)布之后搜索 SKMoviePlayer 庫(kù)的時(shí)候一直出現(xiàn)文章開頭的錯(cuò)誤 (Unable to find a pod with name, author, summary, or descriptionmatching ‘SKMoviePlayer’)。
于是,我就把帳號(hào)和郵箱改成和github上面的帳號(hào)信息一致了。過程如下:

首先執(zhí)行了pod trunk me 信息如下(發(fā)現(xiàn)與github上面的倉(cāng)庫(kù)帳號(hào)不一致):
bogon:~ Leou$ pod trunk me
  - Name:     Leou
  - Email:    wly314sdx@qq.com
  - Since:    August 19th, 03:20
  - Pods:
    - SKMoviePlayer
  - Sessions:
    - August 19th, 03:20 - December 25th, 04:46. IP: 119.57.115.175 Description: MacBook
    Pro
    - August 21st, 20:34 - December 27th, 20:44. IP: 119.57.115.175
執(zhí)行 pod trunk register --help 看看有什么能改本地信息的么:

If you’ve already registered with trunk, you may omit the NAME
(unless you would like to change it)。所以我們可以通過$ pod trunk register eloy@example.com命令更改賬戶,那么好,去注冊(cè)一個(gè)與github用戶名一樣的賬戶。

bogon:desktop Leou$ pod trunk register --help
Usage:

    $ pod trunk register EMAIL [NAME]

      Register a new account, or create a new session.

      If this is your first registration, both an `EMAIL` address and your `NAME` are required. If you’ve already registered with trunk, you may omit the `NAME`
(unless you would like to change it).

      It is recommended that you provide a description of the session, so that it will be easier to identify later on. For instance, when you would like to clean-up
your sessions. A common example is to specify the location where the machine,
that you are using the session for, is physically located.

      Examples:

          $ pod trunk register eloy@example.com 'Eloy Durán' --description='Personal Laptop'
          $ pod trunk register eloy@example.com --description='Work Laptop'
          $ pod trunk register eloy@example.com
執(zhí)行 pod trunk register eloy@example.com 'Eloy Durán' --description='Personal Laptop'
pod trunk register 783459987@qq.com 'wly314' --description='MacBook Pro'

成功之后,去郵箱驗(yàn)證,這一步是為了注冊(cè)另一個(gè)賬戶,然后就可以切換到新建的賬戶上。
之后就可以執(zhí)行pod trunk register 783459987@qq.com重新建立本地會(huì)話,驗(yàn)證郵箱之后,執(zhí)行pod trunk me信息如下:

bogon:desktop Leou$ pod trunk me
  - Name:     wly314
  - Email:    783459987@qq.com
  - Since:    August 21st, 20:28
  - Pods:
    - SKMoviePlayer
  - Sessions:
    - August 21st, 20:28 - December 27th, 20:34. IP: 119.57.115.175
    - August 21st, 21:36 - December 27th, 21:36. IP: 119.57.115.175 Description: MacBook Pro

OK,問題解決到現(xiàn)在就快差不多了,本地已經(jīng)沒什么問題,現(xiàn)在更改倉(cāng)庫(kù)的 Owner。

更改倉(cāng)庫(kù) Owner:
看看現(xiàn)在倉(cāng)庫(kù)的Owner:目前屬于Leou賬戶。
bogon:SKMoviePlayer Leou$ pod trunk info SKMoviePlayer
SKMoviePlayer
    - Versions:
      - 0.0.2 (2016-08-19 09:27:39 UTC)
      - 0.0.3 (2016-08-19 09:55:45 UTC)
      - 0.0.4 (2016-08-19 10:46:17 UTC)
      - 0.0.5 (2016-08-22 02:40:34 UTC)
    - Owners:
      - Leou <wly314sdx@qq.com>
添加一個(gè)賬戶:+ add-owner Add an owner to a pod將新建的賬戶添加到pod庫(kù)里。

如下我們可以看到有兩個(gè)賬戶了,然后可以刪除Leou

bogon:desktop Leou$ pod trunk add-owner SKMoviePlayer 783459987@qq.com
  - Owners:
    - Leou <wly314sdx@qq.com>
    - wly314 <783459987@qq.com>
刪除Leou賬戶:+ remove-owner Remove an owner from a pod

如下我們可以看到Leou賬戶已經(jīng)刪除了,現(xiàn)在就剩下wly314賬戶。

bogon:desktop Leou$ pod trunk remove-owner SKMoviePlayer wly314sdx@qq.com
  - Owners:
    - wly314 <783459987@qq.com>
最后更新一下 SKMoviePlayer 文件:

如下:

Pod::Spec.new do |s|

  s.name         = "SKMoviePlayer"
  s.version      = "0.0.7"
  s.summary      = "SKMoviePlayer一個(gè)在完善中的播放器-基于AVPlayer"

  s.description  = <<-DESC
SKMoviePlayer一個(gè)在完善中的播放器-基于AVPlayer
必須是addSubview添加播放器SKMoviePlayer。
                   DESC

  s.homepage     = "https://wly314.github.io"
  s.license      = "MIT"

  s.author             = { "wly314" => "783459987@qq.com" }

  s.platform     = :ios, "7.0"

  s.source       = { :git => "https://github.com/wly314/SKMoviePlayer.git", :tag => "0.0.7" }

  s.source_files  = "SKMoviePlayer", "*.{h,m}"
  s.resources    = 'SKMoviePlayer/SKImages/*.{png,jpg}'

  s.requires_arc = true
end

提交,推送到github倉(cāng)庫(kù)上,更新pod庫(kù)。
OK,現(xiàn)在問題已經(jīng)解決。搜索一下庫(kù)pod search SKMoviePlayer,可以看到,搜索已經(jīng)成功。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容