gpt4 book ai didi

ios - 我在对私有(private) gitlab pod/项目容器执行 "No podspec found"时收到一条 "pod install"消息

转载 作者:可可西里 更新时间:2023-11-01 03:40:45 29 4
gpt4 key购买 nike

我正在进行一些 CocoaPods 项目,试图构建我自己的私有(private) Pod,可以通过我的主项目中的“pod install”访问。这是一个 Swift 项目,一切似乎都在工作,阅读适当的教程等......

我不得不说我已经使用 cocoapods 有一段时间了,但我有点新构建我自己的 pod 并将它们存储在我的私有(private) gitlab 空间中。

这似乎是我的问题:显然我不知道如何将我最近创建的 pod 正确存储在我的 gitlab 空间中。此外,运行“pod install”无法获取我的 podspec 文件。

我现在拥有的是一个带有 Podfile 的主项目。在这个项目中,我对我的 pod 进行了下一个简单的定义(2 个公共(public)的(SpkinKit 和 MBProgressHUD)和 1 个私有(private)的“commons”):我的 Podfile 是这个:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'

target 'MyBaseApp' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for MyBaseApp

pod 'SpinKit'
pod 'MBProgressHUD'
pod 'commons', :path => 'ssh://git@internal_ip_numeric_address_of_my_gitlab_machine:2222/myusername/ios_commons_pod.git'

end

如果我输入“pod install --verbose”,我会得到以下输出:

Fetching external sources
-> Fetching podspec for `commons` from `ssh://git@internal_ip_numeric_address_of_my_gitlab_machine:2222/myusername/ios_commons_pod.git`
[!] No podspec found for `commons` in `ssh://git@internal_ip_numeric_address_of_my_gitlab_machine:2222/myusername/ios_commons_pod.git`

这次崩溃不允许 pod 下载,进程就此停止。

好像哪里不对?据我了解,我在该 gitlab 路径中确实有一个 podspec 文件。看看这个截图:

File Structure inside my Gitlab

我使用的 URL 方案是 SSH 风格的方案,即出现在我的 gitlab 项目主页根目录中的方案(不是 HTTP/HTTPS 方案)。这是项目的限制,所以我不能使用 HTTP。

OTOH 我认为我的 SSH 凭据(和 key 设置)在我的机器上存储正常。为什么?因为我尝试从命令行针对该 URL 使用 ssh shell,并且我可以在屏幕上看到“Welcome myusername”而无需指定任何用户名和密码(然后 gitlab 机器出于安全原因注销该 shell,但这是另一个主题。那是预期的行为)。

无论如何,我仍然不确定我应该在我的基本应用程序 Podfile 中使用什么确切的 URL 格式/路径。

在 gitlab 中,我的文件和 podspec 文件存储在最后一个屏幕截图中显示的结构中,但我仍然不能 100% 确定我是否已设置一切正常。

我的 commons.podspec 文件的内容是这些:

Pod::Spec.new do |s|

# 1
s.platform = :ios
s.ios.deployment_target = '8.0'
s.name = "commons"
s.summary = "commons test fw via pod."
s.requires_arc = true

# 2
s.version = "0.1.0"

# 3
s.license = { :type => "MIT", :file => "LICENSE" }

# 4 - Replace with your name and e-mail address
s.author = { "Me" => "my@email.address.com" }


# 5 - Replace this URL with your own Github page's URL (from the address bar)
s.homepage = "http://internal_ip_numeric_address_of_my_gitlab_machine:8888/myusername"

# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "http://internal_ip_numeric_address_of_my_gitlab_machine:8888/myusername/ios_commons_pod.git", :tag => "#{s.version}"}

# 7
s.framework = "UIKit"
s.dependency 'RNCryptor'

# 8
s.source_files = "commons/**/*.{swift}"

# 9
s.resources = "commons/**/*.{png,jpeg,jpg,xib,storyboard}"
end

有什么提示吗?

谢谢。

最佳答案

您唯一需要做的就是将 :path => 更改为 :git => 它应该会从您的存储库下载 pod。

关于ios - 我在对私有(private) gitlab pod/项目容器执行 "No podspec found"时收到一条 "pod install"消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39223846/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com