I logged into my Bluehost server through SSH and I want to install Ruby v1.9.3 and Rails v3.2.13. The default version of Ruby seems to be 1.8.7 and Rails is 2.3.11.
I tried to upgrade Rails using:
gem install rails -v 3.2.13 --no-rdoc --no-ri
I get the following output:
Successfully installed rails-3.2.13
1 gem installed
I then tried running a check that it was installed:
rails -v
I get the following output:
Rails 2.3.11
These are my bash_profile and bashrc files in the root folder:
bash_profile:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export PATH=$HOME/bin:$HOME/.gems/bin:$PATH
export GEM_HOME="$HOME/.gems"
export GEM_PATH="$HOME/.gems:/usr/lib64/ruby/gems/1.8"
unset USERNAME
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
bashrc:
# .bashrc
# User specific aliases and functions
alias mv='mv -i'
alias rm='rm -i'
alias cp='cp -i'
export HPATH=$HOME
export GEM_HOME=$HPATH/ruby/gems
export GEM_PATH=$GEM_HOME:/usr/lib64/ruby/gems/1.8
export GEM_CACHE=$GEM_HOME/cache
export PATH=$PATH:$HPATH/ruby/gems/bin
export PATH=$PATH:$HPATH/ruby/gems
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
Why does it not get upgraded? Additionally, what command should I be using within bluehost SSH session to upgrade Ruby?
Put into
.bash_profile
(which is in your root directory) next lines:Reconnect to your account and try to install rails again.
Update
I have an account on Bluehost and I run Ruby 1.8.7 + Ruby on Rails 3.2.13. Some files into root directory:
.bashrc
.bash_profile
.gemrc
where instead of
/home2/myserv
you should provide system path from root to your home directory.