Подтвердить что ты не робот

Почему моя библиотека не может расширить сайт CocoaPods?

Я пытаюсь получить доступ к моей библиотечной информации через веб-сайт CocoaPods, но я не могу. Кажется, что все другие библиотеки могут расширяться (мой MKWeatherUndergroundKit)

enter image description here

Вот мой 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" => "[email protected]" }
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
4b9b3361

Ответ 1

Теперь вы должны быть хорошими, http://cocoapods.org/pods/MKWeatherUndergroundKit

Проблема заключалась в том, что наш сервер CocoaDocs не работал, я вручную перераспределил вашу версию и взглянул на минуту.

Я также написал статью на своем блоге с большим количеством полезных советов: http://orta.io/rebase/why-cant-i-expand/