LoginSignup
2
2

More than 5 years have passed since last update.

ruby 2.0.0-p247環境構築memo

Posted at

rvm がruby2系に対応していない。

ので、

# rvm削除(調べてわらう
rvm seppuku

# rbenvを入れる。homebrewは導入済み。
brew update
brew install rbenv
brew install ruby-build
rbenv  install -l # 一覧をみる
rbenv  install 2.0.0-p247
rbenv rehash
rbenv local 2.0.0-p247

# rubyの準備
gem install bundler --pre
gem install rake

# あとはproject にて
cd ${RAILS_ROOT}
rbenv exec bundle install

ついでに入れたもの

brew install mysql 
brew unlink mysql
brew install percona-server # いつも間違う。
2
2
1

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
2
2