1
0
Fork 0
deploying-rails-app/slides/install-ruby.md

378 B

Install Ruby

  • sudo su - app
  • Install rbenv
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
  • Install and use Ruby
rbenv install 2.3.0
rbenv global 2.3.0
gem install bundler

note: