Rails Requires RubyGems >= 1.3.2 (You Have 1.3.1)
You might have faced this issue during the installation of a well known software called Redmine. I followed the installation steps of redmine from this link, but when I run the following command, I see this error message:
rake db:migrate RAILS_ENV=”production”
The fix to this problem is very simple, RubyGems is one of the core depency of Redmine, so you have an old version of RubyGem which is no longer workable. Now upgrade your RubyGems to the required i.e. 1.3.2 version by the following three simple steps:
Download latest (1.3.2) version.
wget http://rubyforge.org/frs/download.php/55066/rubygems-1.3.2.tgz
Once download is complete run the following command to unzip the downloaded file.
tar -xvf rubygems-1.3.2.tgz
Install it by typing the following command in the terminal window.
ruby setup.rb
That’s it you should be done with the installation within minutes, Now proceed with further installation steps of Redmine. Cheers!














