I have a rails 2 app that I'm upgrading to use bundler. Unfortunately, this app does not use active_record (but uses every other component of rails heavily).
Previously, to have the app ignore active_record I had the following in my environment.rb file:
config.frameworks -= [ :active_record ]
However, it seems that bundler is forcing active_record to load which obviously throws errors since there isn't a database specified.
I'm using rails 2.3.16 (actually attempting to upgrade to it as part of this process).
I've searched around a bit, and the closest I have found was this open ticket:
https://github.com/wycats/bundler/issues/143
Is my only option to explicitly modify the Gemfile.lock and remove all references to active_record?