Cocoapods page redirecting to github

I made a new pod and pushed it to trunk. It's appearing in the cocoadocs (http://cocoadocs.org/docsets/KeyboardLayoutHelper/0.0.1/) page, but http://cocoapods.org/pods/KeyboardLayoutHelper is redirecting to github.

The pod is working as expected when installed with pod install .

Did I do something wrong or is this something I should submit to issues at cocoapods.org's github page?

Edit: It's been about a week now, still redirecting to my github.

My pod is also appearing differently than all others in the cocoapods.org search:

在这里输入图像描述


It takes some time to create your CocoaPods page if you just published it. Try waiting a day or so.


After waiting 24 hours of my first version, I just tried to release new version ie 1.0.1 & It's published within few minutes. :)

For new version i did below-

  • Modified .podspec file with s.version = '1.0.1'

  • pod lib lint

  • echo "3.0" >> .swift-version//optional for my usecase

  • pod trunk register xx@Email.com

  • pod trunk push JKDropDown.podspec

  • 在这里输入图像描述

    & it's Live here https://cocoapods.org/pods/JKDropDown


    This happens if documentation of your pod file crashes appledoc or jazzy.Conflict in documentation can lead to redirection. Redeploying will fix issue. Open terminal and hit this command:

    curl http://207.254.41.223:4567/redeploy/[YOUR-POD-NAME]/latest
    
    链接地址: http://www.djcxy.com/p/34954.html

    上一篇: RecyclerView仅在滚动时更新

    下一篇: Cocoapods页面重定向到github