cd
git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
ここで、シェルのリスタート
次にrbenv installが使えるようにbuildプラグインをインストール
mkdir -p ~/.rbenv/plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
これでrbenv installコマンドが使えるようになります
インストールできるバージョンを確認
インストール
rbenv install -l
使用中のバージョンを確認
rbenv install 1.9.3-xxxxx
バージョンの切り替え
rbenv versions
リフレッシュ変更を反映
rbenv global 1.9.2-p290
rbenv rehash