Of note, you do not need to run "gem install rails" if you run "/scripts/installruby" as our Ruby installer installs rails by default with it.
Additionally, if you already have ruby and rails on the machine and wanted 2.3.8 installed (the latest supported version we provide), you can simply run this command to get it updated:
Code:
gem install rails -v=2.3.8
You wouldn't want to use "gem install rails" because it will pick up the latest rails version, which is 3.0.3 right now I believe. You should hard code the version you are installing with the -v=2.3.8 flag.