I have rake version 0.9.2 installed, and I think I need to install 0.8.7 to solve some problems. However, after installing 0.8.7, 0.9.2 is still installed. Here is what I ran:
rake --version
rake version 0.9.2
gem install rake -v 0.8.7
Successfully installed rake-0.8.7. 1 stone installed. Installing ri-documentation for rake-0.8.7 ... Installing RDoc documentation for rake-0.8.7 ...
Then I added this to my Gemfile:
gem 'rake', '0.8.7'
But 0.9.2 is still being called:
rake --version
rake version 0.9.2
How to fix it?
source share