标签: ios ruby cocoapods post-install
有没有办法在post_install cocoa-pods脚本中访问应用目标名称(而不是pods目标名称)?
platform :ios, '9.0' target 'MyProject' do pod '...' end post_install do |installer| # i need my application target 'MyProject' here end