У меня есть странный вопрос, когда я пытаюсь использовать FormatterKit в PodSec: pod lib lint
генерирует следующее сообщение об ошибке:
FormatterKit ошибочными PodSec: не удалось удалить «ca.lproj» после того, как команда не удалось: Нет такого файла или каталога
- NOTE | [ARNUHelpersVer2/FormatterKit] error: make directory /var/folders/vy/cw2t3p5s3xsfmjcp9w7t5brw0000gn/T/CocoaPods/Lint/build/Release-iphonesimulator/Pods/FormatterKit.framework/ca.lproj: File exists
- NOTE | [ARNUHelpersVer2/FormatterKit] error: couldn't remove '/var/folders/vy/cw2t3p5s3xsfmjcp9w7t5brw0000gn/T/CocoaPods/Lint/build/Release-iphonesimulator/Pods/FormatterKit.framework/ca.lproj' after command failed: No such file or directory
Я не вижу файла ca.lproj
вообще в директории сборки (Так Xcode попытаться удалить то, что не существует) я прочитал этот вопрос:. mattt/FormatterKit#88
Моего PodSec:
Pod::Spec.new do |s|
s.name = "ARNUHelpersVer2"
s.version = "0.0.1"
s.summary = "A short description of ARNUHelpersVer2."
s.frameworks = 'QuartzCore', 'UIKit', 'Foundation', 'SystemConfiguration'
s.description = <<-DESC
A longer description of ARNUHelpersVer2 in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "http://EXAMPLE/ARNUHelpersVer2"
s.requires_arc = true
s.author = { "Mike" => "[email protected]" }
s.platform = :ios, "7.0"
s.ios.deployment_target = "7.0"
s.source = { :git => "[email protected]:Private", :submodules => true }
s.source_files = 'ARNUHelpersVer2/*.{h,m}'
s.subspec 'FormatterKit' do |ss|
ss.dependency 'FormatterKit'
end
end
У любого органа была эта проблема? Каким будет правильное решение, чтобы люди, которые будут использовать мою библиотеку, не увидели бы такую ошибку.