我正在写一个post_install
脚本Podfile
,我需要修改一个特定的方案。我是 Ruby 的新手,所以我确信我有很多不好/不习惯的习惯。这是我所拥有的:
post_install do |installer|
pods_project = installer.pods_project
scheme_filename = "BonMot.xcscheme"
scheme = Xcodeproj::XCScheme.new File.join(pods_project.path, "xcshareddata/xcschemes", scheme_filename)
# do stuff with scheme
end
我怎样才能避免xcshareddata/xcschemes
中间的硬编码?或者这是最好的方法吗?