开发者

How do I override Activerecord gem with my own in rails?

开发者 https://www.devze.com 2023-02-11 15:09 出处:网络
We\'ve found an error in the开发者_StackOverflow中文版 code for multi-schema databases in ActiveRecord (we\'re fairly positive it\'s an error, atleast ;).So we\'ve patched the file and submitted a pul

We've found an error in the开发者_StackOverflow中文版 code for multi-schema databases in ActiveRecord (we're fairly positive it's an error, atleast ;). So we've patched the file and submitted a pull request to rails core etc.

However, we would like to deploy our fix and not await the inclusion of our fix in a next release of rails. Our app is hosted on Heroku.

Question:

How do i specify in my Gemfile that it should pull the activerecord gem not from its default location but, for example, from my repository at Github ?

Thanks for your help and time,

Erwin


You can add a :git parameter with git path to your Gemfile:

gem "nokogiri", :git => "git://github.com/tenderlove/nokogiri.git"

It is very well described at http://gembundler.com/

0

精彩评论

暂无评论...
验证码 换一张
取 消