Why is my library not able to expand on the CocoaPods website?

生来就可爱ヽ(ⅴ<●) 提交于 2020-02-27 19:14:39

问题


I'm trying to access my library's information through the CocoaPods website, but I'm not able to. All the other libraries seem to be able to expand (mine is MKWeatherUndergroundKit)

Here is my podspec

Pod::Spec.new do |s|

s.name         = "MKWeatherUndergroundKit"
s.version      = "0.6"
s.summary      = "A simple iOS and OS X library for retrieving weather information using the Weather Underground API"
s.homepage     = "https://github.com/MendyK/MKWeatherUndergroundKit"
s.license      = { :type => "MIT", :file => "LICENSE" }
s.author             = { "MendyK" => "myEmail@gmail.com" }
s.social_media_url   = "https://twitter.com/MenndK"
s.platform     = :ios, '8.0'
s.source       = { :git => "https://github.com/MendyK/MKWeatherUndergroundKit.git", :tag => "0.6"}

s.source_files  = "MKWeatherUndergroundKit/*.{h,m}"
s.resources = "MKWeatherUndergroundKit/Climacons.ttf"
s.requires_arc = true
s.frameworks = 'CoreGraphics', 'CoreLocation'
end

回答1:


You should now be good, http://cocoapods.org/pods/MKWeatherUndergroundKit

The problem was that our CocoaDocs server was down, I've manually redeployed your version and am taking a look at the minute.

I've also wrote up an article on my blog post with a lot of useful tips: http://orta.io/rebase/why-cant-i-expand/



来源:https://stackoverflow.com/questions/29240598/why-is-my-library-not-able-to-expand-on-the-cocoapods-website

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!