如何在Rails项目中使用修改后的第三方库?

发布于 2024-10-13 12:28:59 字数 354 浏览 3 评论 0原文

一些背景:

目前,我在 Rails 项目中使用 Coderay gem (v 0.9.7)正在努力。

我下载了该版本的源代码,并为 Coderay 团队计划在后续版本中发布的功能应用了补丁。

问题是:

  1. 如何在我的项目中使用此修改后的代码?

  2. 我正在使用 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:

  1. How do I use this modified code in my project?

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

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

发布评论

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

评论(1

任性一次 2024-10-20 12:28:59

你有几个选择。

1. 自定义 gem

您可以将修改后的 gem 源代码贴在 github 上,然后告诉 Bundler 使用您的代码。

在 Gemfile 中:(

gem 'coderay', :git => 'git://github.com/ryanprayogo/coderay.git'

或者无论实际路径最终是什么。)

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:

gem 'coderay', :git => 'git://github.com/ryanprayogo/coderay.git'

(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

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