I would like the rails 3.0 source tree in my project so I can use patches, etc. I don' want to freeze rails. I would like to be able to pull updates from the main repo too. How do I accomplish this?
In particular the getting started guide, has me confused with
As the root user:
# gem install bundler
# bundle install
If I install the bundled gems to my system then I'm not really running with the vendor/rails source tree. Do rails developers really edit-test-edit-test and then install gems to their system before trying out patches on an actual app?
--- Update ---
$ cd ~myapp/vendor/rails
$ bundler install
There are a bunch of gems in vendor/rails/vendor/cache. When I
$ cd ~/myapp
$ bundler install
... Could not find gem 'rails (= 3.0.0.beta1, runtime)' in any of the sources. (Bundler::GemNotFound)
How do I tell my app to get its gems with the bundled rails gems in vendor/rails/vendor/cache?