构建器的本地属性文件
buildr 文档建议使用profiles.yaml 来管理设置。但是,我想要一种定义个人开发人员在本地运行的设置的方法,因此不应该在 scm 中。有这样做的首选方法吗?
the buildr docs suggest using profiles.yaml for managing settings. however, i would like a way to define settings which an individual dev would use to run locally and thus shouldn't be in scm. is there a preferred way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的解决方案看起来不错。使用 buildr 的
_
函数你可以稍微减少它:Your solution looks good. Using buildr's
_
function you can cut it down slightly:FWIW,我最终得到:
FWIW, I ended up with:
将本地属性放入 local.rb,添加到构建文件
require 'local'
Put your local properties to local.rb, add to buildfile
require 'local'