Created
October 18, 2014 15:50
-
-
Save paulkaplan/d6232bf61274b1f461f6 to your computer and use it in GitHub Desktop.
Fixing dev environment on Yosemite
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# xcode command line tools are gone | |
# reinstall them | |
xcode-select --install | |
# Pow is broken, update to 0.5.0 | |
curl get.pow.cx | sh | |
# PG is broken, Yosemite removes needed dirs | |
# http://stackoverflow.com/questions/25970132/pg-tblspc-missing-after-installation-of-os-x-yosemite-beta | |
mkdir /usr/local/var/postgres/pg_tblspc | |
mkdir /usr/local/var/postgres/pg_twophase | |
mkdir /usr/local/var/postgres/pg_stat_tmp | |
# Anything that uses ruby 1.9.2-p326 is broken | |
# Don't know how to fix it, so just upgrade to another ruby version | |
# 1.9.3-p392 seems to work just fine | |
# change the .ruby_version file as needed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment