Reputation: 119
I am using rails version 4.2.0. How can I downgrade to version 3.2.19?
I tried the following:
gem uninstall rails
gem install rails -v 3.2.19
for installing this version.rails new blog
Upvotes: 11
Views: 24111
Reputation: 16507
That is not good approach to uninstall a global version of Rails
. So just create a Rails
app:
rails new app
then change Rails
version in its Gemfile, and issue bundle install
:
cd app
sed "s/'rails', '~> 4.2.0'/'rails', '~> 3.2.19'/" -i Gemfile
bundle install
Then, I believe, you should change all the dependent packages to older versions.
Upvotes: 1
Reputation: 29124
Or you dont have to downgrade. You can always create a new rails app with a specific version(if that version is already installed)
rails _3.2.19_ new myApp
Upvotes: 13
Reputation: 16506
Do:
gem uninstall rails
gem uninstall railties
Followed by:
gem install rails -v 3.2.19
To check a rails version, directly do:
rails -v
Another workaround:
add following to your Gemfile:
gem 'rails', '3.2.19'
and then run:
bundle install
Upvotes: 23