【发布时间】:2021-02-19 17:16:02
【问题描述】:
我在 linting spec 或推送它的 pod 时突然开始收到以下错误:
错误 | [iOS] 未知:验证过程中遇到未知错误(Pod::DSLError)。
最近对规范所做的唯一更改是版本提升(自上次正常运行以来)。这是完整的规范:
Pod::Spec.new do |s|
s.version = '2.0.0-alpha20'
s.name = 'RollbarCommon'
s.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Easily send error data using Rollbar API.
Analyze, de-dupe, send alerts, and prepare the data for further analysis.
Search, sort, and prioritize via the Rollbar dashboard.
DESC
s.homepage = "https://rollbar.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.documentation_url = "https://docs.rollbar.com/docs/ios"
s.authors = { "Andrey Kornich (Wide Spectrum Computing LLC)" => "akornich@gmail.com",
"Rollbar" => "support@rollbar.com" }
s.social_media_url = "http://twitter.com/rollbar"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{s.version}",
:submodules => true }
s.resource = 'rollbar-logo.png'
# When using multiple platforms:
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'
s.source_files = "#{s.name}/Sources/#{s.name}/**/*.{h,m}"
s.public_header_files = "#{s.name}/Sources/#{s.name}/include/*.h"
s.module_map = "#{s.name}/Sources/#{s.name}/include/module.modulemap"
s.framework = "Foundation"
s.requires_arc = true
end
知道什么地方出了问题吗?
【问题讨论】:
标签: cocoapods