0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ruby環境

0
Last updated at Posted at 2013-12-22

Mac で homebrew がインストールされていること

rbenv , ruby-build, その他インストール

brew install readline
brew install opessl
brew install ruby-build
brew install rbenv

~/.bashrcに以下を追加

if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi

rubyのインストール

opensslのオプションを指定

CONFIGURE_OPTS="--with-readline-dir=`brew --prefix readline` --with-openssl-dir=`brew --prefix openssl` --with-iconv-dir=`brew --prefix libiconv`" rbenv install 2.1.2

bundlerのインストール

rbenv exec gem install bundler
rbenv rehash

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?