iOS经典

Pod制作公共库时遇到的问题

2016-08-22  本文已影响344人  西北望高楼

Unable to find a pod with name, author, summary, or descriptionmatching ‘SKMoviePlayer’
关于发布代码到CocoaPods(Trunk方式)上,就不多说了,可以看官方文档,看不懂的话网上有很多手把手教程。
当时我用 pod trunk 注册账户的时候,由于选择的用户名和github.com上面的不一致,导致发布之后搜索 SKMoviePlayer 库的时候一直出现文章开头的错误 (Unable to find a pod with name, author, summary, or descriptionmatching ‘SKMoviePlayer’)
于是,我就把帐号和邮箱改成和github上面的帐号信息一致了。过程如下:

首先执行了pod trunk me 信息如下(发现与github上面的仓库帐号不一致):
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
执行 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命令更改账户,那么好,去注册一个与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
执行 pod trunk register eloy@example.com 'Eloy Durán' --description='Personal Laptop'
pod trunk register 783459987@qq.com 'wly314' --description='MacBook Pro'

成功之后,去邮箱验证,这一步是为了注册另一个账户,然后就可以切换到新建的账户上。
之后就可以执行pod trunk register 783459987@qq.com重新建立本地会话,验证邮箱之后,执行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,问题解决到现在就快差不多了,本地已经没什么问题,现在更改仓库的 Owner。

更改仓库 Owner:
看看现在仓库的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>
添加一个账户:+ add-owner Add an owner to a pod将新建的账户添加到pod库里。

如下我们可以看到有两个账户了,然后可以删除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账户已经删除了,现在就剩下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一个在完善中的播放器-基于AVPlayer"

  s.description  = <<-DESC
SKMoviePlayer一个在完善中的播放器-基于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仓库上,更新pod库。
OK,现在问题已经解决。搜索一下库pod search SKMoviePlayer,可以看到,搜索已经成功。

上一篇下一篇

猜你喜欢

热点阅读