1
0
Fork 0
deploying-rails-app/slides/install-ruby.md
2016-03-08 18:12:31 -05:00

21 lines
378 B
Markdown

## 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: