rbenv install 2.0.0-preview1はうまくいくものの、bundle installでopensslのエラーが出ました。 sstephenson/ruby-build のIssuesに答えがあったのでメモ。 brew update brew install openssl export CONFIGURE_OPTS="--with-openssl-dir=`brew --prefix openssl`" rbenv install 2.0.0-preview1 rbenv rehash https://github.com/sstephenson/ruby-build/issues/197 これで勝つる。 cd ~/your/app/path rbenv local 2.0.0-preview1 gem install bundler bundle install #