Skip to content

Instantly share code, notes, and snippets.

@akiomik
Last active December 29, 2015 19:10
Show Gist options
  • Save akiomik/7715067 to your computer and use it in GitHub Desktop.
Save akiomik/7715067 to your computer and use it in GitHub Desktop.
rails環境構築メモ
brew install rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bashrc
echo 'eval "$(rbenv init -)"' >> .bashrc

git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install -l # 入れれるバージョン
rbenv install 2.0.0-rc2
rbenv versions # バージョン確認
rbenv global 2.0.0-rc2 # rc2を適用
ruby -v # バージョン確認
sudo gem install rails