How can I switch back?
I installed RVM, then installed Ruby 1.9.3, then ran gem install rails
.
Running rails -v
I can see that I have Rails 4.0.0.rc1
and I don't want to use that version as it's not supported on my hosting provider.
How can I install Rails 3.2.13 and have that be used as default when running rails new
commands?
To install Rails, use the gem install command along with the -v flag to specify the version. For this tutorial, you'll use version 6.1. 4.1 : gem install rails -v 6.1.
Try:
gem uninstall rails
gem install rails --version "=3.2.13"
Try: gem install rails --version 3.2.13 --no-ri --no-rdoc
(--no-ri --no-rdoc
) is optional to speed up the process and skip rdoc generation etc.
gem install rails -v 3.2.13 --no-ri --no-rdoc
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With