将Ruby bundler gems作为Xcode构建脚本运行

时间:2016-06-08 14:59:47

标签: ios xcode bundler

我使用Bundler管理iOS项目中的gem。 我希望能够在构建过程中自动从bundle运行gems 但是,如果我在“运行脚本”构建阶段尝试使用bundle,Xcode找不到命令bundle(这是合理的,因为我们正在修改$PATH中的.bash_profile)。

1 个答案:

答案 0 :(得分:2)

修改OS X环境变量的方法很少。 但是,在这种情况下,有一个简单的解决方法 在“运行脚本”构建阶段:
source ~/.bash_profile && bundle exec ...