In the Bundler, how can I override dependency version requirements for my own dependencies?

I have several needs in my application for which working on edge Rails (3.1) will help me complete my task faster.

The problem is that one of the gems that I rely on is not yet officially supporting Rails 3.1, and has a "raxy" dependency on "~> 3.0.0", which creates a dependency conflict, and the connecting agent cannot resolve my dependencies , Can I override this requirement in my Gemfile application in some way or is this the only way around my dependency?

+7
source share
1 answer

Unfortunately, forking is the only way to solve this. Or, being more hacked, changing the local installation / vendor on the stone.

+2
source

All Articles