如何在Rails项目中使用修改后的第三方库?
一些背景:
目前,我在 Rails 项目中使用 Coderay gem (v 0.9.7)正在努力。
我下载了该版本的源代码,并为 Coderay 团队计划在后续版本中发布的功能应用了补丁。
问题是:
如何在我的项目中使用此修改后的代码?
我正在使用 Heroku 作为实时网站。由于现在我不使用官方 gem,如何在实时站点中使用修改后的代码?
Some background:
Currently, I'm using the Coderay gem (v 0.9.7) in a Rails project that I'm working on.
I downloaded the source code for that version and applied a patch for a functionality that the Coderay team is planning to release in later version.
Questions are:
How do I use this modified code in my project?
I'm using Heroku for the live site. How do I use the modified code in the live site since now I'm not using the official gem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有几个选择。
1. 自定义 gem
您可以将修改后的 gem 源代码贴在 github 上,然后告诉 Bundler 使用您的代码。
在 Gemfile 中:(
或者无论实际路径最终是什么。)
2. Evil twin
另一种选择是在您的供应商目录中创建 Evil Twin。这就像一种黑客模式,您希望将其与库代码分开。
http://errtheblog.com/posts/67-evil-twin-plugin
You have a couple of options.
1. Custom gem
You could stick your modified gem source up on github, and then tell Bundler to use your code.
In
Gemfile
:(Or whatever the actual path ends up being.)
2. Evil twin
The other option would be to do an Evil Twin in your vendor directory. It's something like a pattern for hacks that you want to keep separate from your library code.
http://errtheblog.com/posts/67-evil-twin-plugin