PodSec で FormatterKit を使用しようとすると、奇妙な問題がpod lib lint
発生します。次のエラーが生成されます。
- 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
My 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" => "myMail@gmail.com" }
s.platform = :ios, "7.0"
s.ios.deployment_target = "7.0"
s.source = { :git => "git@bitbucket.org:Private", :submodules => true }
s.source_files = 'ARNUHelpersVer2/*.{h,m}'
s.subspec 'FormatterKit' do |ss|
ss.dependency 'FormatterKit'
end
end
この問題が発生した人はいますか?私のライブラリを使用する人がこの種のエラーを表示しないようにするための正しい解決策は何ですか?