使用捆绑器维护一组已修补的 Rails gem 的最简单方法是什么?
我们正在从“冻结”rails gem 过渡到使用捆绑器,并且希望通过补丁、合并等(例如来自外部 git 源)来维护 Rails gem。设置此功能的最简单方法是什么,将 gemspec 添加到补丁分支等?
We're transitioning from 'frozen' rails gems to using bundler and would like to maintain the rails gems with patches, merges etc. say from an external git source. What's the easiest way to set this up, adding gemspecs to the patch branches etc.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会将它们存储在捆绑器可访问的位置(例如 github 上的公共存储库),在您的 gemfile 中使用
:git=>
选项,例如I would store them on a place accessible to bundler (like a public repo on github), in your gemfile use the
:git=>
option like