-
-
Save udzura/e86f6454758e5bb731b8 to your computer and use it in GitHub Desktop.
Mac OS X 上での Homebrew + rbenv + ruby-build + ruby + rails の環境構築(Xcode, Comamnd Line Tools のインストールを済ませてから。)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Homebrew のインストール | |
# 公式 (http://brew.sh/) に載っているコマンドです | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Ruby のビルドに必要なものをインストール | |
brew install openssl readline rbenv ruby-build # 時間がかかります | |
# rbenv 用の設定を .bash_profile に書き込む | |
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile | |
# bash の設定を読み込む (または、一回ターミナルを終了させてもう一度開く) | |
source ~/.bash_profile | |
# ruby 2.3.0 のインストール | |
rbenv install 2.3.0 | |
rbenv global 2.3.0 | |
# ruby がちゃんと入ったことを確認 | |
ruby -v | |
# => ruby 2.3.0... | |
# rails インストール | |
gem install rails --no-ri --no-rdoc # --no-ri, --no-rdoc はドキュメントのインストールをスキップするオプション (時間がかかるので) | |
rbenv rehash # rbenv を使っている場合、gem install 後にはこれが必要 | |
rails -v | |
# => Rails 4.2.4.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment