Used gem install rails, and now I have 4.0.0.rc1 - I want Rails 3

How can i come back?

I installed RVM, then installed Ruby 1.9.3, then launched gem install rails .

Running rails -v I see that I have Rails 4.0.0.rc1 and I don’t want to use this version because it is not supported by my hosting provider.

How can I install Rails 3.2.13 and use this as the default when running rails new commands?

+8
ruby ruby-on-rails rvm
source share
3 answers

Try:

 gem uninstall rails gem install rails --version "=3.2.13" 
+16
source share

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.

+11
source share
 gem install rails -v 3.2.13 --no-ri --no-rdoc 
+2
source share

All Articles