为什么我的图书馆无法在CocoaPods网站上展开?

我试图通过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服务器closures了,我已经手动重新部署了你的版本,并且正在看一会儿。

我还在我的博客文章中写了一篇文章,提供了许多有用的提示: http : //orta.io/rebase/why-cant-i-expand/