为什么我的库无法在 CocoaPods 网站上扩展?

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

我正在尝试通过 CocoaPods 网站访问我的图书馆的信息,但无法访问。所有其他库似乎都可以扩展(我的是 MKWeatherUndergroundKit)

这是我的 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

你现在应该好了,http://cocoapods.org/pods/MKWeatherUndergroundKit

问题是我们的 CocoaDocs 服务器宕机了,我已经手动重新部署了您的版本,现在正在查看。

我还在我的博客 post 上写了一篇文章,其中包含很多有用的提示:http://orta.io/rebase/why-cant-i-expand/