How do I override Activerecord gem with my own in rails? -
we've found error in code multi-schema databases in activerecord (we're positive it's error, atleast ;). we've patched file , submitted pull request rails core etc.
however, deploy our fix , not await inclusion of our fix in next release of rails. our app hosted on heroku.
question:
how specify in gemfile should pull activerecord gem not default location but, example, repository @ github ?
thanks , time,
erwin
you can add :git
parameter git path gemfile:
gem "nokogiri", :git => "git://github.com/tenderlove/nokogiri.git"
it described @ http://gembundler.com/
Comments
Post a Comment