I am new to RoR and I tried to follow the Ruby on Rails Tutorial from Micheal Hartl. Before starting the tutorial I already set up everything earlier and updated the Rails v
If you're using bundler (which is highly recommended), you should be able to use different versions of gems for different applications
--
Have you tried this:
In your
Gemfile
, make sure you have the correct version of Rails referenced -
gem 'rails', '3.2.0'
In your app directory -
bundle install
--
This will use bundler to install the respective gems for your app, which can change as required