$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
$ echo 'eval "$(rbenv init -)"' >> ~/.bashrc
$ . ~/.bashrc
Check if rbenv
was set up:
$ type rbenv
# => "rbenv is a function"
Then install rbenv-build to manage Ruby versions:
$ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
$ rbenv install 2.1.2
$ rbenv global 2.1.2
When you update
my-application-template.rb
don't forget to update the link in~/.railsrc
as well.