inherit! :search_paths
が必要な理由(https://guides.cocoapods.org/syntax/podfile.html#abstract_targetから)継承するもの! :search_pathsは何ですか?
# Note: There are no targets called "Shows" in any of this workspace's Xcode projects
abstract_target 'Shows' do
pod 'ShowsKit'
# The target ShowsiOS has its own copy of ShowsKit (inherited) + ShowWebAuth (added here)
target 'ShowsiOS' do
pod 'ShowWebAuth'
end
# The target ShowsTV has its own copy of ShowsKit (inherited) + ShowTVAuth (added here)
target 'ShowsTV' do
pod 'ShowTVAuth'
end
# Our tests target has its own copy of
# our testing frameworks, and has access
# to ShowsKit as well because it is
# a child of the abstract target 'Shows'
target 'ShowsTests' do
inherit! :search_paths
pod 'Specta'
pod 'Expecta'
end
end
CocoaPods自身の例を見た後、私は表示されないのですか? 3つすべてのターゲット、ShowsiOS
、ShowsTV
およびShowsTests
は、親ターゲットからShowsKit
にアクセスできます。 (https://guides.cocoapods.org/syntax/podfile.html#inherit_bangから)
inherit!
のための具体的な例としては、
target 'App' do
target 'AppTests' do
inherit! :search_paths
end
end
任意の明瞭さを追加しませんあなたは私がinherit! :search_paths
が何のためにあるのか理解するのに役立つことはできますか? https://guides.cocoapods.org/syntax/podfile.html#inherit_bang に応じ
あなたは質問を投稿して以来、私たちがそれを使用する理由についていくつか明確になっていますか? – Jobs
残念ながら、いいえ:( – Quentin
これは誰も使用していない機能だと思われます=) –