Install Ruby on Ubuntu
Default install of Ruby on Ubuntu is not good.
-
Remove actual installation
sudo apt-get remove rubysudo apt autoremove -
Update & install necessary packages
sudo apt-get updatesudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev -
Download Ruby environnement: rbenv
git clone https://github.com/rbenv/rbenv.git ~/.rbenvecho 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrcecho 'eval "$(rbenv init -)"' >> ~/.bashrcexec $SHELL -
Download Ruby
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-buildecho 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrcexec $SHELL -
Install Ruby
rbenv install 2.3.1rbenv global 2.3.1ruby -v