Skip to content

Instantly share code, notes, and snippets.

@rweald
Created August 13, 2012 02:28
Show Gist options
  • Save rweald/3336493 to your computer and use it in GitHub Desktop.
Save rweald/3336493 to your computer and use it in GitHub Desktop.
Getting Ruby Up and Running on OSX Mountain Lion
  • Install the latest version of xcode from the App Store

  • Install the xcode command line tools. How To Guide

  • XCode no longer ships with gcc-4.2 as a separate executable as gcc is version 4.2. Therefore you need to symlink it so that ruby can find gcc-4.2.

    sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment