10

CocoaPods Web サイトから自分のライブラリの情報にアクセスしようとしていますが、アクセスできません。他のすべてのライブラリは拡張できるようです(私のものは MKWeatherUndergroundKit です)

ここに画像の説明を入力

これが私のポッドスペックです

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
4

1 に答える 1

13

あなたは今、良いはずです、http://cocoapods.org/pods/MKWeatherUndergroundKit

問題は、CocoaDocs サーバーがダウンしていたことでした。手動でバージョンを再デプロイし、その分を確認しています。

また、多くの役立つヒントを含む記事をブログ投稿に書きました: http://orta.io/rebase/why-cant-i-expand/

于 2015-03-24T19:43:03.477 に答える