从podspec向Xcode项目添加运行脚本构建阶段

时间:2013-11-19 13:33:23

标签: ios objective-c ruby xcode cocoapods

我正在尝试为我的库编写Cocoapods规范,该规范必须修改Xcode项目并将“Run Script Build Phase”添加到项目的目标中。我以为我可以使用post_install钩子。 但是“ pod spec lint ”表示不推荐使用此挂钩:

- WARN  | [iOS] The post install hook of the specification DSL has been deprecated, use the `resource_bundles` or the `prepare_command` attributes.

我不知道如何用* resource_bundles *或* prepare_command *替换post_install挂钩。 谁知道解决我的问题的任何其他方法?有可能吗?

另一个问题是如何修改Xcode项目以添加构建阶段,但只有在解决了“post_hook问题”时它才是实际的。

1 个答案:

答案 0 :(得分:31)

使用Xcodeproj ruby​​ gem(它是Cocoapods的一部分)编写一个修改Xcode项目的脚本。

然后使用 prepare_command 调用此脚本。

require 'xcodeproj'
path_to_project = "${SOURCE_ROOT}/${PROJECT_NAME}.xcodeproj"
project = Xcodeproj::Project.open(path_to_project)
main_target = project.targets.first
phase = main_target.new_shell_script_build_phase("Name of your Phase")
phase.shell_script = "do sth with ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/your.file"
project.save()

文档:http://rubydoc.info/gems/xcodeproj/frames

您可以通过运行...

获取构建设置变量及其值的列表
xcodebuild -project [ProjectName].xcodeproj -target "[TargetName]" -showBuildSettings

<强>更新 自写这篇答案以来,有些事情发生了变化。目前正在讨论访问环境变量的问题:https://github.com/CocoaPods/CocoaPods/issues/2115