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

2024-02-18

我正在尝试通过 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" => "[email protected] /cdn-cgi/l/email-protection" }
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 http://cocoapods.org/pods/MKWeatherUndergroundKit

问题是我们的 CocoaDocs 服务器已关闭,我已手动重新部署您的版本并正在查看分钟。

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

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

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

随机推荐