A: 
gem install bundler --pre
bundle install
ViC
+2  A: 

You may want to check out upgrading Rails from beta4 to RC. It's mentioning changes to Bundler and to your app's files (like config/* and Rakefile).

Olek
A: 

This screencast came out in the last couple of days that walks through many of the changes.

Bill Turner
+1  A: 

There are also important changes to bundler usage (like the default install location is now system-wide, not local). Yehuda gives a great overview of best practices:

Deployment
When deploying, we strongly recommend that you isolate your gems into a local path (using bundle install path --disable-shared-gems). The final version of bundler will come with a --production flag, encapsulating all of the best deployment practices.

For now, please follow the following recommendations (described using Capistrano concepts):

  1. Make sure to always check in a Gemfile.lock that is up to date. This means that after modifying your Gemfile, you should ALWAYS run bundle install.

  2. Symlink the vendor/bundle directory into the application’s shared location (symlink release_path/current/vendor/bundle to release_path/shared/bundled_gems)

  3. Install your bundle by running bundle install vendor/bundle --disable-shared-gems

http://bit.ly/bh3lNw

serpico7456