Men*_*dyK 10 objective-c ios cocoapods podspec
我正试图通过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
Run Code Online (Sandbox Code Playgroud)
ort*_*rta 13
你应该现在好,http://cocoapods.org/pods/MKWeatherUndergroundKit
问题是我们的CocoaDocs服务器出现故障,我手动重新部署了你的版本,我正在看一下这一分钟.
我还在我的博客文章中写了一篇文章,里面有很多有用的提示:http://orta.io/rebase/why-cant-i-expand/