构建器的本地属性文件

发布于 2024-10-05 16:27:34 字数 92 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

紅太極 2024-10-12 16:27:34

你的解决方案看起来不错。使用 buildr 的 _ 函数你可以稍微减少它:

Buildr.settings.profiles.merge!(
  YAML.load(File.read(_("profiles.local.yml")))

Your solution looks good. Using buildr's _ function you can cut it down slightly:

Buildr.settings.profiles.merge!(
  YAML.load(File.read(_("profiles.local.yml")))
陌上青苔 2024-10-12 16:27:34

FWIW,我最终得到:

path = File.dirname(@application.rakefile)
loc = YAML.load(File.read(File.join(path, "profiles.local.yml")))
Buildr.settings.profiles.merge!(loc)

FWIW, I ended up with:

path = File.dirname(@application.rakefile)
loc = YAML.load(File.read(File.join(path, "profiles.local.yml")))
Buildr.settings.profiles.merge!(loc)
素衣风尘叹 2024-10-12 16:27:34

将本地属性放入 local.rb,添加到构建文件

require 'local'

Put your local properties to local.rb, add to buildfile

require 'local'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文