#akai

floatcloud

Installing Rails on Mac OS X

  1. Run software update

  2. Form Mac App Store download & install XCode

  3. Install Homebrew

    1
    
    /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
    
  4. Install Git

    1
    
    brew install git
    
  5. Install rbenv & ruby-build

    1
    2
    
    brew install rbenv
    brew install ruby-build
    
  6. Install Ruby

    1
    2
    
    rbenv install 1.9.2-p290
    rbenv global 1.9.2-p290
    
  7. Install MySQL

    1
    
    brew install mysql
    
  8. Install Rails

    1
    
    gem install rails --no-rdoc --no-ri
    
  9. Enjoy!

Comments